binjai
v0.9.0
Published
Typescript collections and more to come..
Downloads
159
Readme
binjai
Install
npm i binjaiUsage
import { List } from "binjai/collection/List";
List([1, 2, 3, 4])
.filter(e => e % 2 === 0)
.flatMap(n => List([n, n + 1])
.toArray(true);
