NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/@antv/util/lib/to-array.js

7 lines
176 B
JavaScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
var isArrayLike = require('./type/is-array-like');
function toArray(value) {
return isArrayLike(value) ? Array.prototype.slice.call(value) : [];
}
module.exports = toArray;