Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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]

```