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/pipe.js
import { toAsyncIterable } from './helpers/index.js';
import { opCombineAsync, opCombineSync } from './operators/index.js';
export function pipeAsync(i, ...fns) {
const iter = toAsyncIterable(i);
return opCombineAsync(...fns)(iter);
}
export function pipeSync(i, ...fns) {
return opCombineSync(...fns)(i);
}
//# sourceMappingURL=pipe.js.map