Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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]
```