diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2021-07-05 13:56:25 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-05 10:26:25 +0200 |
commit | 6a4769670df5ea3653a110474af0ec2ca79eeb0b (patch) | |
tree | 9c2d29208566517fe4cef6dec7e23b2a7d83eb6b | |
parent | a80e34f92c81504471d0cdb17eb64f53f2c54add (diff) |
fix(webidl): use primordial for SymbolToStringTag (#11275)
-rw-r--r-- | extensions/webidl/00_webidl.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/webidl/00_webidl.js b/extensions/webidl/00_webidl.js index c43a39ee9..07c9f8e31 100644 --- a/extensions/webidl/00_webidl.js +++ b/extensions/webidl/00_webidl.js @@ -926,7 +926,7 @@ function mixinPairIterable(name, prototype, dataSymbol, keyKey, valueKey) { const iteratorPrototype = ObjectCreate(globalIteratorPrototype, { - [Symbol.toStringTag]: { configurable: true, value: `${name} Iterator` }, + [SymbolToStringTag]: { configurable: true, value: `${name} Iterator` }, }); define(iteratorPrototype, { next() { |