UNPKG

iteragain

Version:

Javascript Iterable/Iterator/Generator-function utilities.

9 lines 234 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.pipe = pipe; function pipe(value, ...fns) { for (const fn of fns) value = fn(value); return value; } //# sourceMappingURL=pipe.js.map