aboutsummaryrefslogtreecommitdiff
path: root/node_modules/es5-ext/object/validate-array-like.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/es5-ext/object/validate-array-like.js')
-rw-r--r--node_modules/es5-ext/object/validate-array-like.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/node_modules/es5-ext/object/validate-array-like.js b/node_modules/es5-ext/object/validate-array-like.js
deleted file mode 100644
index 07aa79495..000000000
--- a/node_modules/es5-ext/object/validate-array-like.js
+++ /dev/null
@@ -1,8 +0,0 @@
-"use strict";
-
-var isArrayLike = require("./is-array-like");
-
-module.exports = function (obj) {
- if (isArrayLike(obj)) return obj;
- throw new TypeError(obj + " is not array-like value");
-};