harden runtime packaging and verification

This commit is contained in:
Sinabina
2026-07-17 12:09:49 -07:00
parent 20d2840bd3
commit d7357c288f
36 changed files with 801 additions and 265 deletions
+5
View File
@@ -0,0 +1,5 @@
/** Resolve an injectable clock and serialize it for durable runtime state. */
export function currentIsoTimestamp(now) {
const current = now ? now() : new Date();
return current.toISOString();
}