UNPKG

fast-check

Version:

Property based testing framework for JavaScript (like QuickCheck)

25 lines (24 loc) 589 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.makeLazy = void 0; class LazyIterableIterator { constructor(producer) { this.producer = producer; } [Symbol.iterator]() { if (this.it === undefined) { this.it = this.producer(); } return this.it; } next() { if (this.it === undefined) { this.it = this.producer(); } return this.it.next(); } } function makeLazy(producer) { return new LazyIterableIterator(producer); } exports.makeLazy = makeLazy;