NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/es5-ext/array/to-array.js
2023-09-14 14:47:11 +08:00

7 lines
177 B
JavaScript

"use strict";
var from = require("./from")
, isArray = Array.isArray;
module.exports = function (arrayLike) { return isArray(arrayLike) ? arrayLike : from(arrayLike); };