Name Description Size
browser.js 0
shell.js 0
toString.js --- esid: sec-Intl-toStringTag description: > Object.prototype.toString utilizes Intl[@@toStringTag] and doesn't special-case Intl namespace object. info: | Object.prototype.toString ( ) [...] 14. Else, let builtinTag be "Object". 15. Let tag be ? Get(O, @@toStringTag). 16. If Type(tag) is not String, set tag to builtinTag. 17. Return the string-concatenation of "[object ", tag, and "]". Intl [ @@toStringTag ] The initial value of the @@toStringTag property is the String value "Intl". features: [Symbol.toStringTag] --- 1203
toStringTag.js --- esid: sec-Intl-toStringTag description: > Property descriptor of Intl[@@toStringTag]. info: | Intl [ @@toStringTag ] The initial value of the @@toStringTag property is the String value "Intl". This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: true }. features: [Symbol.toStringTag] includes: [propertyHelper.js] --- 661