@thi.ng/transducers
Version:
Collection of ~170 lightweight, composable transducers, reducers, generators, iterators for functional data transformations
18 lines (17 loc) • 515 B
JavaScript
import { isIterable } from "@thi.ng/checks/is-iterable";
import { compR } from "./compr.js";
import { iterator } from "./iterator.js";
import { isReduced } from "./reduced.js";
function interleave(sep, src) {
return isIterable(src) ? iterator(interleave(sep), src) : (rfn) => {
const r = rfn[2];
const _sep = typeof sep === "function" ? sep : () => sep;
return compR(rfn, (acc, x) => {
acc = r(acc, _sep());
return isReduced(acc) ? acc : r(acc, x);
});
};
}
export {
interleave
};