https://github.com/blaketarter/simple-fp
A simple, small, no dependeny functional programming library
https://github.com/blaketarter/simple-fp
declarative fp functional javascript programming simple
Last synced: 16 days ago
JSON representation
A simple, small, no dependeny functional programming library
- Host: GitHub
- URL: https://github.com/blaketarter/simple-fp
- Owner: blaketarter
- License: mit
- Created: 2017-02-19T00:10:11.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T10:15:17.000Z (about 3 years ago)
- Last Synced: 2025-09-17T03:48:08.779Z (5 months ago)
- Topics: declarative, fp, functional, javascript, programming, simple
- Language: TypeScript
- Size: 1.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/blaketarter/simple-fp/actions)
# simple-fp
A simple, small, no dependency functional programming library.
## Installation
Using yarn:
```shell
yarn add simple-fp --save
```
using npm:
```shell
npm i simple-fp
```
## Usage
```js
const { unique } = require("simple-fp")
unique([1, 1, 2, 3]).forEach(function(num) {
console.log(num)
})
// 1, 2, 3
```