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