Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hjzheng/range
https://github.com/hjzheng/range
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/hjzheng/range
- Owner: hjzheng
- License: mit
- Created: 2019-09-17T05:19:24.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T10:33:00.000Z (almost 2 years ago)
- Last Synced: 2024-09-24T17:15:53.287Z (about 1 month ago)
- Language: JavaScript
- Size: 313 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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]
```