Files
RoggioApp/node_modules/effect/dist/esm/internal/logSpan.js
T
2026-04-26 19:42:42 +02:00

17 lines
453 B
JavaScript
Executable File

/** @internal */
export const make = (label, startTime) => ({
label,
startTime
});
/**
* Sanitize a given string by replacing spaces, equal signs, and double quotes with underscores.
*
* @internal
*/
export const formatLabel = key => key.replace(/[\s="]/g, "_");
/** @internal */
export const render = now => self => {
const label = formatLabel(self.label);
return `${label}=${now - self.startTime}ms`;
};
//# sourceMappingURL=logSpan.js.map