style: replace em dashes with hyphens throughout codebase

Replace all — with - in all source files (JS, CSS, HTML, JSON,
Markdown) for consistency and readability.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Ulas
2026-04-03 17:04:39 +02:00
parent 6046cac7a8
commit 1122bd269b
56 changed files with 256 additions and 256 deletions
+3 -3
View File
@@ -1,17 +1,17 @@
/**
* Tests: UX Utilities (stagger, vibrate)
* Läuft im Node-Kontext kein DOM verfügbar, daher nur Pure-Logic-Tests.
* Läuft im Node-Kontext - kein DOM verfügbar, daher nur Pure-Logic-Tests.
*/
import { test } from 'node:test';
import assert from 'node:assert/strict';
// Minimales Window/Navigator-Mock für Node
const { stagger, vibrate } = await (async () => {
// stagger braucht window.matchMedia wir mocken es
// stagger braucht window.matchMedia - wir mocken es
global.window = {
matchMedia: () => ({ matches: false }),
};
// navigator ist in Node ein getter-only property über defineProperty überschreiben
// navigator ist in Node ein getter-only property - über defineProperty überschreiben
Object.defineProperty(global, 'navigator', {
value: { vibrate: null },
writable: true,