@luvies/lazy
Version:
A linq-like lazy iteration module that aims to support deno, node & browser
22 lines • 597 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.repeat = exports.range = exports.from = exports.empty = exports.Lazy = void 0;
const lazy_1 = require("./lazy");
Object.defineProperty(exports, "Lazy", { enumerable: true, get: function () { return lazy_1.Lazy; } });
/**
* @see [[Lazy.empty]]
*/
exports.empty = lazy_1.Lazy.empty;
/**
* @see [[Lazy.from]]
*/
exports.from = lazy_1.Lazy.from;
/**
* @see [[Lazy.range]]
*/
exports.range = lazy_1.Lazy.range;
/**
* @see [[Lazy.repeat]]
*/
exports.repeat = lazy_1.Lazy.repeat;
//# sourceMappingURL=mod.js.map