debian-mirror-gitlab/core-js/modules/es.object.to-string.js

10 lines
387 B
JavaScript
Raw Normal View History

2019-12-04 20:38:33 +05:30
var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');
2019-09-25 13:30:05 +05:30
var redefine = require('../internals/redefine');
var toString = require('../internals/object-to-string');
// `Object.prototype.toString` method
// https://tc39.github.io/ecma262/#sec-object.prototype.tostring
2019-12-04 20:38:33 +05:30
if (!TO_STRING_TAG_SUPPORT) {
redefine(Object.prototype, 'toString', toString, { unsafe: true });
2019-09-25 13:30:05 +05:30
}