small array utilities
https://jsr.io/@mary/array-fns
- TypeScript 100%
| .vscode | initial commit | |
| .zed | chore: zed settings | |
| lib | feat: product function | |
| deno.json | chore: relicense to 0bsd | |
| LICENSE | chore: relicense to 0bsd | |
| README.md | initial commit | |
array-fns
small array utilities
const numbers = mapDefined(range(1, 5), (x) => x % 2 === 0 ? x * 2 : undefined);
// ^? [4, 8]