Creates an array of numbers for a given range
npm install number-array-from-rangeCreates an array of numbers for a given range.




You can install via npm or yarn.
``bash`
npm install --save number-array-from-range
`bash`
yarn add number-array-from-range
You can import using ES6 imports.
`javascript`
import { numberArrayFromRange } from 'number-array-from-range';
numberArrayFromRange accepts two arguments:
min: The lower bound of the number array to create
max The upper bound of the number array to create
#### Example
`javascript
import { numberArrayFromRange } from 'number-array-from-range';
const rangeArray = numberArrayFromRange(10, 20);
// [10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
``