Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/hjzheng/range


https://github.com/hjzheng/range

Last synced: 27 days ago
JSON representation

Awesome Lists containing this project

README

        

# range

```
npm install @jxz/range
```

```js
const range = require('@jxz/range')

range(4) //[0, 1, 2, 3]

range(1, 4) //[1, 2, 3]

range(5, 20, 4) //[5, 9, 13, 17]

range(2, -10, -4) //[2, -2, -6]
```