UNPKG

@effect-ts/system

Version:

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

16 lines (13 loc) 259 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Int = Int; // ets_tracing: off function Int(n) { if (!Number.isInteger(n)) { throw new Error("not an integer"); } return n; } //# sourceMappingURL=index.js.map