├── .gitignore ├── README.md ├── dist ├── pointfree.amd.js └── pointfree.browser.js ├── index.js ├── instances ├── array.js ├── const.js ├── function.js ├── identity.js ├── maybe.js ├── monoids.js ├── string.js └── sum.js ├── package.json ├── pointfree.js ├── test ├── array.js ├── const.js ├── function.js ├── helper.js ├── identity.js ├── maybe.js ├── monoids.js └── string.js └── util.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | tmp 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/pointfree-fantasy/HEAD/README.md -------------------------------------------------------------------------------- /dist/pointfree.amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/pointfree-fantasy/HEAD/dist/pointfree.amd.js -------------------------------------------------------------------------------- /dist/pointfree.browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/pointfree-fantasy/HEAD/dist/pointfree.browser.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./pointfree'); -------------------------------------------------------------------------------- /instances/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/pointfree-fantasy/HEAD/instances/array.js -------------------------------------------------------------------------------- /instances/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/pointfree-fantasy/HEAD/instances/const.js -------------------------------------------------------------------------------- /instances/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/pointfree-fantasy/HEAD/instances/function.js -------------------------------------------------------------------------------- /instances/identity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/pointfree-fantasy/HEAD/instances/identity.js -------------------------------------------------------------------------------- /instances/maybe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/pointfree-fantasy/HEAD/instances/maybe.js -------------------------------------------------------------------------------- /instances/monoids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/pointfree-fantasy/HEAD/instances/monoids.js -------------------------------------------------------------------------------- /instances/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/pointfree-fantasy/HEAD/instances/string.js -------------------------------------------------------------------------------- /instances/sum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/pointfree-fantasy/HEAD/instances/sum.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/pointfree-fantasy/HEAD/package.json -------------------------------------------------------------------------------- /pointfree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/pointfree-fantasy/HEAD/pointfree.js -------------------------------------------------------------------------------- /test/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/pointfree-fantasy/HEAD/test/array.js -------------------------------------------------------------------------------- /test/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/pointfree-fantasy/HEAD/test/const.js -------------------------------------------------------------------------------- /test/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/pointfree-fantasy/HEAD/test/function.js -------------------------------------------------------------------------------- /test/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/pointfree-fantasy/HEAD/test/helper.js -------------------------------------------------------------------------------- /test/identity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/pointfree-fantasy/HEAD/test/identity.js -------------------------------------------------------------------------------- /test/maybe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/pointfree-fantasy/HEAD/test/maybe.js -------------------------------------------------------------------------------- /test/monoids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/pointfree-fantasy/HEAD/test/monoids.js -------------------------------------------------------------------------------- /test/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/pointfree-fantasy/HEAD/test/string.js -------------------------------------------------------------------------------- /util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/pointfree-fantasy/HEAD/util.js --------------------------------------------------------------------------------