Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 26 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 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T10:15:17.000Z (about 2 years ago)
- Last Synced: 2024-04-14T05:11:06.338Z (9 months ago)
- Topics: declarative, fp, functional, javascript, programming, simple
- Language: TypeScript
- Size: 1.7 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://github.com/blaketarter/simple-fp/workflows/CI/badge.svg)](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
```