frontend/.pnpm-store/v3/files/29/4fa3353c614e3a79f4716072180ffda38589e557856b1b33faa7f9facb5ac547be5cb047e0cdfa84a8ddabffa805f450562a8d307b9f69306470778455bd93

10 lines
249 B
Plaintext

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