Clean Code include src folder
All checks were successful
Deploy Docs to Synology / deploy (push) Successful in 4s

This commit is contained in:
2026-05-04 12:06:09 +02:00
parent 39a67b94fc
commit ab0e6e0697
13 changed files with 105 additions and 68 deletions

View File

@@ -1,5 +1,5 @@
(() => {
// sigpro.js
// src/sigpro.js
var isFunc = (f) => typeof f === "function";
var isObj = (o) => o && typeof o === "object";
var isArr = Array.isArray;
@@ -225,7 +225,7 @@
return () => dispose(effect2);
}
const effect = createEffect(() => {
const vals = Array.isArray(sources) ? sources.map((s) => s()) : sources();
const vals = isArr(sources) ? sources.map((s) => s()) : sources();
untrack(() => cb(vals));
});
effect();
@@ -251,10 +251,8 @@
return null;
if (isDangerousAttr(key)) {
const sVal = String(val);
if (DANGEROUS_PROTOCOL.test(sVal)) {
console.warn(`[SigPro] Bloqueado protocolo peligroso en ${key}`);
if (DANGEROUS_PROTOCOL.test(sVal))
return "#";
}
}
return val;
};
@@ -520,7 +518,7 @@
});
}
// sigpro_umd.js
// src/build_umd.js
if (typeof window !== "undefined") {
Object.assign(window, { $, $$, watch, h, Fragment, when, each, router, mount, batch, onUnmount, isArr, isFunc, isObj });
}