UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

18 lines (14 loc) 290 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Stack = void 0; // ets_tracing: off class Stack { constructor(value, previous) { this.value = value; this.previous = previous; } } exports.Stack = Stack; //# sourceMappingURL=index.js.map