aboutsummaryrefslogtreecommitdiff
path: root/node_modules/es5-ext/array/valid-array.js
blob: 1e58c39a3fff0c3a410282c2e7cb4e26dd7392ff (plain)
1
2
3
4
5
6
7
8
"use strict";

var isArray = Array.isArray;

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