The TypeScript array tools library for orxapi

shell
node -v
v8.0.0
`
Installation
`shell
npm install orxapi.tools.toscroll --save-dev
`
This library is written in TypeScript, but you can use JavaScript.
Usage
TypeScript code
`ts
import { makeArray, range } from "orxapi.tools.array";
// Create array calendar with 42 days (7 days x 6 weeks)
const days = makeArray(42);
// Create option list with range
const optionList = seq("2..8").map((value: number) => ({ code: ${value}, val: ${value} }));
``