small array utilities
0

Configure Feed

Select the types of activity you want to include in your feed.

18 1 0

Clone this repository

https://git.vm.fail/mary.my.id/pkg-array-fns https://git.vm.fail/did:plc:5rt635wo7r23gmtbqlll247h
ssh://git@knot1.tangled.sh:2222/mary.my.id/pkg-array-fns ssh://git@knot1.tangled.sh:2222/did:plc:5rt635wo7r23gmtbqlll247h

For self-hosted knots, clone URLs may differ based on your setup.


README.md

array-fns#

small array utilities

const numbers = mapDefined(range(1, 5), (x) => x % 2 === 0 ? x * 2 : undefined);
//    ^? [4, 8]