array-fns#
small array utilities
const numbers = mapDefined(range(1, 5), (x) => x % 2 === 0 ? x * 2 : undefined);
// ^? [4, 8]
For self-hosted knots, clone URLs may differ based on your setup.
small array utilities
const numbers = mapDefined(range(1, 5), (x) => x % 2 === 0 ? x * 2 : undefined);
// ^? [4, 8]