server-json/node_modules/ramda/es/internal/_xchain.js
2024-11-01 08:00:42 +00:00

7 lines
No EOL
173 B
JavaScript

import _flatCat from "./_flatCat.js";
import _xmap from "./_xmap.js";
export default function _xchain(f) {
return function (xf) {
return _xmap(f)(_flatCat(xf));
};
}