UNPKG

geninq

Version:

A JavaScript version of the Linq library for Generators

8 lines (7 loc) 177 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Array.prototype.geninq = function* () { for (const item of this) { yield item; } };