frontend/.pnpm-store/v3/files/8b/cad6c3e49f032bcb4afbb85d3480a346059a7d1d1d9e45a122c6e3a26cb1e797abd9af9d67c253ead5d34822fb2f469820c444f3b24b28539024cc69bd1286

9 lines
190 B
Plaintext

"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");
};