summaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/es6.object.to-string.js
blob: 409d519358e36f2ae012b611fdc0783a7f040706 (plain)
1
2
3
4
5
6
7
8
9
10
'use strict';
// 19.1.3.6 Object.prototype.toString()
var classof = require('./$.classof')
  , test    = {};
test[require('./$.wks')('toStringTag')] = 'z';
if(test + '' != '[object z]'){
  require('./$.redefine')(Object.prototype, 'toString', function toString(){
    return '[object ' + classof(this) + ']';
  }, true);
}