Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/customcommander/functionaut
General purpose library for the functional programming hobbyist.
https://github.com/customcommander/functionaut
functional-programming javascript
Last synced: about 1 month 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 (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-18T20:02:18.000Z (over 2 years ago)
- Last Synced: 2024-12-13T13:11:55.209Z (about 2 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
![npm bundle size (scoped)](https://img.shields.io/bundlephobia/min/@customcommander/functionaut)
![Maintenance](https://img.shields.io/maintenance/yes/2022)# 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]```