Show More
Commit Description:
change logger to be limited by file size
Commit Description:
change logger to be limited by file size
References:
File last commit:
Show/Diff file:
Action:
node_modules/core-js/modules/es6.object.to-string.js
| 10 lines
| 321 B
| application/javascript
| JavascriptLexer
|
r789 | '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); | ||||
} | ||||