summaryrefslogtreecommitdiffstats
path: root/node_modules/es-abstract/5/CheckObjectCoercible.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/es-abstract/5/CheckObjectCoercible.js')
-rw-r--r--node_modules/es-abstract/5/CheckObjectCoercible.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/node_modules/es-abstract/5/CheckObjectCoercible.js b/node_modules/es-abstract/5/CheckObjectCoercible.js
deleted file mode 100644
index f02b289..0000000
--- a/node_modules/es-abstract/5/CheckObjectCoercible.js
+++ /dev/null
@@ -1,14 +0,0 @@
-'use strict';
-
-var GetIntrinsic = require('../GetIntrinsic');
-
-var $TypeError = GetIntrinsic('%TypeError%');
-
-// http://www.ecma-international.org/ecma-262/5.1/#sec-9.10
-
-module.exports = function CheckObjectCoercible(value, optMessage) {
- if (value == null) {
- throw new $TypeError(optMessage || ('Cannot call method on ' + value));
- }
- return value;
-};