UNPKG
@notlekmelo/gerar-boletos
Version:
latest (1.5.11)
1.5.11
1.5.9
1.5.8
1.5.7
1.5.6
1.5.5
1.5.4
1.5.3
1.5.2
1.5.1
1.5.0
1.4.5
Gerar boletos para vários bancos
github.com/Romulosanttos/gerar-boletos
notlekmelo/gerar-boletos
@notlekmelo/gerar-boletos
/
lib
/
utils
/
array-utils.js
14 lines
(11 loc)
•
260 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports.series = function(
from
, to){
var
params
= [
from
, to];
if
(
from
> to) {
params
= [to,
from
]; }
var
result = [];
while
(
params
[
0
] <=
params
[
1
]) { result.push(
params
[
0
]++); }
return
from
> to ? result.reverse() : result; };