Files
gstack/runtime/time.js
T

6 lines
200 B
JavaScript

/** Resolve an injectable clock and serialize it for durable runtime state. */
export function currentIsoTimestamp(now) {
const current = now ? now() : new Date();
return current.toISOString();
}