Newer
Older
vmk-demo-bot / admin / node_modules / es5-ext / array / valid-array.js
@eugene-sukhodolskiy eugene-sukhodolskiy 18 days ago 169 bytes init
"use strict";

var isArray = Array.isArray;

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