Skip to content

emilbayes/range-inclusive

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 

range-inclusive Build Status

Generate a closed range of numbers [a, b] with step size d

Installation

npm install range-inclusive

Usage

var rangeInclusive = require('range-inclusive')

rangeInclusive(10) // [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
rangeInclusive(3, 9, 3) // [3, 6, 9]
rangeInclusive(7, 5, -1) // [7, 6, 5]

Related

License

ISC

About

Generate a closed range of numbers `[a, b]` with step size `d`

Resources

License

Stars

Watchers

Forks

Packages

No packages published