frontend/.pnpm-store/v3/files/79/5185e056b717d11b8f4e10bcf371d94c9ea66e99194e547081f8692277d833e85b3d4924284ac0c17ef1b395ddf569881acabe9289879ea33cef805b0b2221

10 lines
267 B
Plaintext

"use strict";
var toShortString = require("../to-short-string-representation")
, isArray = require("./is-array-like");
module.exports = function (value) {
if (isArray(value)) return value;
throw new TypeError(toShortString(value) + " is not a array");
};