Files
babel/lib/6to5/transformation/templates/to-array.js
2015-02-12 07:37:40 +11:00

4 lines
75 B
JavaScript

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