blob: 1e58c39a3fff0c3a410282c2e7cb4e26dd7392ff [file] [log] [blame]
"use strict";
var isArray = Array.isArray;
module.exports = function (value) {
if (isArray(value)) return value;
throw new TypeError(value + " is not an array");
};