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

9 lines
169 B
Java

"use strict";
var isArray = Array.isArray;
module.exports = function (value) {
if (isArray(value)) return value;
throw new TypeError(value + " is not an array");
};