frontend/.pnpm-store/v3/files/59/023e85158da97c049d8ead471283f62a4091056f1bf24a68e084e769a29a5f4566d4602690f5b89aad01cde1f262c86dbac8f701275d850aff8e12439b8a4d

9 lines
169 B
Plaintext

"use strict";
var isArray = Array.isArray;
module.exports = function (value) {
if (isArray(value)) return value;
throw new TypeError(value + " is not an array");
};