effect
Version:
The missing standard library for TypeScript, for writing production-grade software.
17 lines • 453 B
JavaScript
/** @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