You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ensure-array.js 267B

123456789
  1. "use strict";
  2. var toShortString = require("../to-short-string-representation")
  3. , isArray = require("./is-array-like");
  4. module.exports = function (value) {
  5. if (isArray(value)) return value;
  6. throw new TypeError(toShortString(value) + " is not a array");
  7. };