Erster Docker-Stand
This commit is contained in:
17
_node_modules/effect/dist/esm/internal/logSpan.js
generated
vendored
Normal file
17
_node_modules/effect/dist/esm/internal/logSpan.js
generated
vendored
Normal 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
|
||||
Reference in New Issue
Block a user