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