babel/lib/6to5/templates/to-array.js
2014-11-23 11:59:18 +11:00

4 lines
75 B
JavaScript

(function (arr) {
return Array.isArray(arr) ? arr : Array.from(arr);
});