mirror of
https://github.com/Doodle3D/Doodle3D-API
synced 2024-12-23 22:13:48 +01:00
11 lines
293 B
JavaScript
11 lines
293 B
JavaScript
|
/* */
|
||
|
'use strict';
|
||
|
var cof = require("./$.cof"),
|
||
|
tmp = {};
|
||
|
tmp[require("./$.wks")('toStringTag')] = 'z';
|
||
|
if (require("./$").FW && cof(tmp) != 'z') {
|
||
|
require("./$.redef")(Object.prototype, 'toString', function toString() {
|
||
|
return '[object ' + cof.classof(this) + ']';
|
||
|
}, true);
|
||
|
}
|