bereich

1.0.0 • Public • Published

bereich

bereich creates ranges of numbers.

Installation

$ npm install bereich

Quick start

To use bereich you need to integrate it in your application:

const range = require('bereich');

Then you can use it to create a range of numbers. Since it returns an iterator, you can use constructs such as ..., Array.from and for of without further ado:

console.log(...range(1, 10));
// => 1, 2, 3, 4, 5, 6, 7, 8, 9, 10

If you swap min and max, it also works in descending order:

console.log(...range(10, 1));
// => 10, 9, 8, 7, 6, 5, 4, 3, 2, 1

You can also specify the step:

console.log(...range(1, 10, 2));
// => 1, 3, 5, 7, 9

Running the build

To build this module use roboter.

$ bot

License

The MIT License (MIT) Copyright (c) 2018 the native web.

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.

Readme

Keywords

Package Sidebar

Install

npm i bereich

Weekly Downloads

69

Version

1.0.0

License

MIT

Unpacked Size

7.11 kB

Total Files

7

Last publish

Collaborators

  • goloroden