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

https://github.com/codewell/range

Create a range of numbers
https://github.com/codewell/range

Last synced: 19 days ago
JSON representation

Create a range of numbers

Awesome Lists containing this project

README

          

# @codewell/range
Create a range of numbers

## Installation
```
npm install @codewell/range
```

## Basic usage
```JavaScript
import range from '@codewell/range';

range(3); // => [0, 1, 2]
```