// package
iota-array
type: "module"
// preferences
// replacements (1)
snippet::array-from-count
Simple or drop-in replacementThis package is no longer necessary. You can use `Array.from` to create an array of sequential integers
// example
Array.from({ length: n }, (_, i) => i);