Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maxnowack/number-array
Generates an array based on a series of numbers
https://github.com/maxnowack/number-array
Last synced: 25 days 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 (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-17T09:33:53.000Z (almost 7 years ago)
- Last Synced: 2024-10-03T08:48:34.375Z (about 1 month 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 [![Build Status](https://travis-ci.org/maxnowack/number-array.svg?branch=master)](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]
```