All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.core-js.modules.es6.object.to-string.js Maven / Gradle / Ivy

The newest version!
'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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy