UNPKG

geninq

Version:

A JavaScript version of the Linq library for Generators

10 lines (9 loc) 258 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Empty = void 0; /** * Builds an empty generator with the specified type. * @returns An empty generator or specified type. */ function* Empty() { } exports.Empty = Empty;