_xchain.js 173 B

1234567
  1. import _flatCat from "./_flatCat.js";
  2. import _xmap from "./_xmap.js";
  3. export default function _xchain(f) {
  4. return function (xf) {
  5. return _xmap(f)(_flatCat(xf));
  6. };
  7. }