Partie-2/node_modules/es5-ext/object/validate-array-like.js
Simon Priet 9e2991e668 init
2021-09-05 22:53:58 +02: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");
};