small array utilities
0

Configure Feed

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

array-fns#

small array utilities

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