1
0
Fork
You've already forked pkg-array-fns
0
small array utilities https://jsr.io/@mary/array-fns
  • TypeScript 100%
2025年07月15日 17:16:15 +07:00
.vscode initial commit 2025年01月31日 09:34:58 +07:00
.zed chore: zed settings 2025年07月15日 14:56:57 +07:00
lib feat: product function 2025年07月15日 15:11:48 +07:00
deno.json chore: relicense to 0bsd 2025年07月15日 17:16:15 +07:00
LICENSE chore: relicense to 0bsd 2025年07月15日 17:16:15 +07:00
README.md initial commit 2025年01月31日 09:34:58 +07:00

array-fns

small array utilities

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