aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/es6.object.to-string.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/core-js/modules/es6.object.to-string.js')
-rw-r--r--node_modules/core-js/modules/es6.object.to-string.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/node_modules/core-js/modules/es6.object.to-string.js b/node_modules/core-js/modules/es6.object.to-string.js
deleted file mode 100644
index 1c7b85feb..000000000
--- a/node_modules/core-js/modules/es6.object.to-string.js
+++ /dev/null
@@ -1,10 +0,0 @@
-'use strict';
-// 19.1.3.6 Object.prototype.toString()
-var classof = require('./_classof');
-var test = {};
-test[require('./_wks')('toStringTag')] = 'z';
-if (test + '' != '[object z]') {
- require('./_redefine')(Object.prototype, 'toString', function toString() {
- return '[object ' + classof(this) + ']';
- }, true);
-}