Sign in
cobalt
/
cobalt
/
b95ea55ccebda33f820d043e4b4dc85c10d7584d
/
.
/
third_party
/
devtools
/
node_modules
/
to-array
/
index.js
blob: 6a38a6927531bfdef985bb47ce191c5a75a977a2 [
file
] [
log
] [
blame
]
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
}