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

32
node_modules/effect/dist/esm/internal/metric/pair.js generated vendored Normal file
View file

@ -0,0 +1,32 @@
import { pipeArguments } from "../../Pipeable.js";
/** @internal */
const MetricPairSymbolKey = "effect/MetricPair";
/** @internal */
export const MetricPairTypeId = /*#__PURE__*/Symbol.for(MetricPairSymbolKey);
const metricPairVariance = {
/* c8 ignore next */
_Type: _ => _
};
/** @internal */
export const make = (metricKey, metricState) => {
return {
[MetricPairTypeId]: metricPairVariance,
metricKey,
metricState,
pipe() {
return pipeArguments(this, arguments);
}
};
};
/** @internal */
export const unsafeMake = (metricKey, metricState) => {
return {
[MetricPairTypeId]: metricPairVariance,
metricKey,
metricState,
pipe() {
return pipeArguments(this, arguments);
}
};
};
//# sourceMappingURL=pair.js.map