https://github.com/maxnowack/number-array
Generates an array based on a series of numbers
https://github.com/maxnowack/number-array
Last synced: about 1 year ago
JSON representation
Generates an array based on a series of numbers
- Host: GitHub
- URL: https://github.com/maxnowack/number-array
- Owner: maxnowack
- License: mit
- Created: 2018-01-17T09:23:47.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-17T09:33:53.000Z (over 8 years ago)
- Last Synced: 2025-01-22T02:35:40.184Z (over 1 year ago)
- Language: JavaScript
- Size: 39.1 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# number-array [](https://travis-ci.org/maxnowack/number-array)
> Generates an array based on a series of numbers
## Install
```
$ npm install --save number-array
```
## Usage
```js
const numberArray = require('number-array');
numberArray(5);
//=> [0, 1, 2, 3, 4]
```