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

10 lines
319 B
JavaScript
Raw Normal View History

2016-10-10 03:43:44 +02:00
'use strict';
// 19.1.3.6 Object.prototype.toString()
2017-05-27 17:36:13 +02:00
var classof = require('./_classof')
2016-10-10 03:43:44 +02:00
, test = {};
2017-05-27 17:36:13 +02:00
test[require('./_wks')('toStringTag')] = 'z';
2016-10-10 03:43:44 +02:00
if(test + '' != '[object z]'){
2017-05-27 17:36:13 +02:00
require('./_redefine')(Object.prototype, 'toString', function toString(){
2016-10-10 03:43:44 +02:00
return '[object ' + classof(this) + ']';
}, true);
}