@sethyuan/rambda
v0.1.1
Published
Extensions to the Rambda library
Downloads
1
Readme
Rambda
This provides some of the functions not included in Rambda but are quite useful.
This library has Rambda as peer dependency, and it's as tree-shakable as Rambda itself.
Install
yarn add @sethyuan/rambda
Example Usage
import { flatMap } from "@sethyuan/rambda"
const ret = flatMap(x => [x, x], [1, 2, 3])
console.log(ret)