https://github.com/customcommander/functionaut
General purpose library for the functional programming hobbyist.
https://github.com/customcommander/functionaut
functional-programming javascript
Last synced: 7 months ago
JSON representation
General purpose library for the functional programming hobbyist.
- Host: GitHub
- URL: https://github.com/customcommander/functionaut
- Owner: customcommander
- License: mit
- Created: 2021-02-13T20:10:43.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-18T20:02:18.000Z (about 3 years ago)
- Last Synced: 2025-03-15T15:03:30.337Z (8 months ago)
- Topics: functional-programming, javascript
- Language: JavaScript
- Homepage: http://customcommander.github.io/functionaut/
- Size: 827 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README


# Functionaut
General purpose library for the functional programming hobbyist.
## Installation
```
npm i @customcommander/functionaut
```
### Browser
A browser bundle is available and exports the library under the `window['@customcommander/functionaut']` namespace:
```html
const {map, add} = window['@customcommander/functionaut'];
map(add(42))([0, 1, 2]);
//=> [42, 43, 44]
```