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
- Host: GitHub
- URL: https://github.com/codewell/range
- Owner: codewell
- License: mit
- Created: 2019-09-30T10:43:31.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T02:11:01.000Z (over 3 years ago)
- Last Synced: 2025-01-21T09:56:09.734Z (over 1 year ago)
- Language: JavaScript
- Size: 478 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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]
```