to-array.js 212 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 "use strict"; var _Array$from = require("babel-runtime/core-js/array/from")["default"]; exports["default"] = function (arr) { return Array.isArray(arr) ? arr : _Array$from(arr); }; exports.__esModule = true;