프로젝트

일반

사용자정보

통계
| 개정판:

root / HServer / 00.Server / 00.Program / node_modules / to-array / index.js

이력 | 보기 | 이력해설 | 다운로드 (216 Bytes)

1 39 HKM
module.exports = toArray
2
3
function toArray(list, index) {
4
    var array = []
5
6
    index = index || 0
7
8
    for (var i = index || 0; i < list.length; i++) {
9
        array[i - index] = list[i]
10
    }
11
12
    return array
13
}