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