mirror of
https://github.com/Doodle3D/Doodle3D-API
synced 2024-12-23 14:13:47 +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);
|
|
}
|