
r...e
Range implementation for Node.js
Synopsis
var range = require('r...e');
Numeric range
range(1, 3).toArray();
range('1..3').toArray();
Alpha range
range('a', 'c').toArray();
Steps
range(0, 10, 5).toArray();
#include
range(1, 3).include(2);
range(1, 3).include(4);
#map
range(1, 3).map(function(n) {
return n;
});
#each
range(1, 3).each(function(n) {
console.log(n);
});
#join
range(1, 2).join('');
range(1, 2).join();
#equal
range(1, 2).equal(range(1, 2));
range(1, 2, 1).equal(range(1, 2, 2));
#sum
range(1, 3).sum();
#min
range().min(1).min();
#max
range().max(3).max();
#step
range().step(1).step();
Installation
Node.js:
$ npm install r...e
Browser:
Download range.min.js, it's all you need.
<script src="range.min.js"></script>
Tests
Node.js:
$ npm install
$ make test
Browser:
- Clone the repository
- Open
test/browser/index.html in your favourite browser
TODO
License
(The MIT License)
Copyright (c) 2012 Veselin Todorov hi@vesln.com
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.