mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/RoboCommander.git
synced 2026-06-15 16:06:05 +00:00
11 lines
321 B
JavaScript
11 lines
321 B
JavaScript
'use strict';
|
|
// 19.1.3.6 Object.prototype.toString()
|
|
var classof = require('./_classof');
|
|
var test = {};
|
|
test[require('./_wks')('toStringTag')] = 'z';
|
|
if (test + '' != '[object z]') {
|
|
require('./_redefine')(Object.prototype, 'toString', function toString() {
|
|
return '[object ' + classof(this) + ']';
|
|
}, true);
|
|
}
|