wallet-core/node_modules/core-js/modules/es6.object.to-string.js

10 lines
322 B
JavaScript
Raw Normal View History

2016-10-10 03:43:44 +02:00
'use strict';
// 19.1.3.6 Object.prototype.toString()
var classof = require('./$.classof')
2016-10-10 03:43:44 +02:00
, test = {};
test[require('./$.wks')('toStringTag')] = 'z';
2016-10-10 03:43:44 +02:00
if(test + '' != '[object z]'){
require('./$.redefine')(Object.prototype, 'toString', function toString(){
2016-10-10 03:43:44 +02:00
return '[object ' + classof(this) + ']';
}, true);
}