Packages
A spellchecker for Elixir, made with Bun and cspell
Current section
Files
Jump to
Current section
Files
priv/bun/node_modules/@cspell/cspell-pipe/dist/operators/combine.js
export function opCombineAsync(...fns) {
function combine(iter) {
for (const fn of fns) {
iter = fn(iter);
}
return iter;
}
return combine;
}
export function opCombineSync(...fns) {
function combine(iter) {
for (const fn of fns) {
iter = fn(iter);
}
return iter;
}
return combine;
}
//# sourceMappingURL=combine.js.map