1.0.1 • Published 6 years ago

range-exclusive v1.0.1

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

range-exclusive Build Status

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

Installation

npm install range-exclusive

Usage

var rangeExclusive = require('range-exclusive')

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

Related

License

ISC