aboutsummaryrefslogtreecommitdiffhomepage
path: root/node_modules/to-array/index.js
blob: 6a38a6927531bfdef985bb47ce191c5a75a977a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
}