flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
10
VISUALIZACION/node_modules/core-js/modules/es6.object.to-string.js
generated
vendored
Executable file
10
VISUALIZACION/node_modules/core-js/modules/es6.object.to-string.js
generated
vendored
Executable file
|
|
@ -0,0 +1,10 @@
|
|||
'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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue