source: node_modules/ramda/src/internal/_xchain.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 221 bytes
Line 
1var _flatCat =
2/*#__PURE__*/
3require("./_flatCat.js");
4
5var _xmap =
6/*#__PURE__*/
7require("./_xmap.js");
8
9function _xchain(f) {
10 return function (xf) {
11 return _xmap(f)(_flatCat(xf));
12 };
13}
14
15module.exports = _xchain;
Note: See TracBrowser for help on using the repository browser.