blob: e644a5d1f0cf1f0b17027645e6784d354010f144 (
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);
}
|