UNPKG

132 BJavaScriptView Raw
1/**
2 * Converts list into array
3 */
4module.exports = function toArray (list) {
5 return Array.prototype.slice.call(list || [], 0)
6}