Files
WAI_Project_VUE/node_modules/es5-ext/iterable/validate.js
2025-11-24 23:24:06 +08:00

9 lines
178 B
JavaScript

"use strict";
var is = require("./is");
module.exports = function (value) {
if (is(value)) return value;
throw new TypeError(value + " is not an iterable or array-like");
};