UNPKG

geninq

Version:

A JavaScript version of the Linq library for Generators

11 lines (10 loc) 226 B
declare global { /** * Builds a generator from an array. * @returns A generator with the same type as the array. */ interface Array<T> { geninq(): Generator<T, void, unknown>; } } export {};