mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
14 lines
216 B
JavaScript
14 lines
216 B
JavaScript
![]() |
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
|
||
|
}
|