Current section

Files

Jump to
spellweaver priv bun node_modules @cspell cspell-pipe dist helpers util.js
Raw

priv/bun/node_modules/@cspell/cspell-pipe/dist/helpers/util.js

export function toPipeFn(syncFn, asyncFn) {
function _(i) {
return isAsyncIterable(i) ? asyncFn(i) : syncFn(i);
}
return _;
}
export function isAsyncIterable(i) {
return typeof i[Symbol.asyncIterator] === 'function';
}
//# sourceMappingURL=util.js.map