UNPKG

lazzy.ts

Version:

Fast and lightweight library for lazy operations with iterable objects.

12 lines 294 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.circular = void 0; function* circular(iterable) { while (true) { for (const e of iterable) { yield e; } } } exports.circular = circular; //# sourceMappingURL=circular.js.map