UNPKG
projeto-chaordic
Version:
latest (1.0.1)
1.0.1
1.0.0
Servidor node chaordic
projeto-chaordic
/
npmignore
/
node_modules
/
to-array
/
index.js
14 lines
(9 loc)
•
216 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = toArray
function
toArray
(
list
, index
)
{
var
array
= [] index = index ||
0
for
(
var
i = index ||
0
; i <
list
.length; i++) {
array
[i - index] =
list
[i] }
return
array
}