1
0
forked from dyf/APP
Files
APP/node_modules/es5-ext/object/validate-array-like.js
2025-07-05 14:49:26 +08:00

9 lines
190 B
JavaScript

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