BE-SPAN/node_modules/es5-ext/iterable/validate.js
githubna-ilham 722cd440e8 first commit
2024-10-20 22:04:16 +07: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");
};