small array utilities
0

Configure Feed

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

1# array-fns 2 3small array utilities 4 5```ts 6const numbers = mapDefined(range(1, 5), (x) => x % 2 === 0 ? x * 2 : undefined); 7// ^? [4, 8] 8```