Initial commit

This commit is contained in:
Brian McGonagill 2026-03-18 09:02:21 -05:00
commit b3a51a4115
10336 changed files with 2381973 additions and 0 deletions

17
node_modules/effect/dist/esm/internal/logSpan.js generated vendored Normal file
View file

@ -0,0 +1,17 @@
/** @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