This commit is contained in:
2026-04-08 12:10:23 +02:00
parent 925a673775
commit b2ba771b9c

1
sw.js
View File

@@ -1,5 +1,6 @@
const isFunction = (value) => typeof value === 'function'; const isFunction = (value) => typeof value === 'function';
const isNode = (value) => value instanceof Node; const isNode = (value) => value instanceof Node;
const get = (sig) => (sig?._isSignal ? sig.value : (isFn(sig) ? sig() : sig));
// --- Schedule System --- // --- Schedule System ---
let isScheduled = false; let isScheduled = false;