/
websites
/
test-project
/
node_modules
/
to-array
/
Upload File
HOME
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 }