UNPKG

veffect

Version:

powerful TypeScript validation library built on the robust foundation of Effect combining exceptional type safety, high performance, and developer experience. Taking inspiration from Effect's functional principles, VEffect delivers a balanced approach tha

11 lines 280 B
/** @internal */ export const make = (label, startTime) => ({ label, startTime }); /** @internal */ export const render = now => self => { const label = self.label.replace(/[\s="]/g, "_"); return `${label}=${now - self.startTime}ms`; }; //# sourceMappingURL=logSpan.js.map