You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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
|
|
}
|