blob: d86a8f5f242b27a19981dd1751ec4ca9985f0c34 [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");
};