diff options
author | 李瑞丰 <li15227870916@gmail.com> | 2021-09-25 01:07:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-25 02:07:22 +0900 |
commit | 46245b830a24930ab36f8ce2831325cdd1da17d3 (patch) | |
tree | c96c2a69a30120d2cdf639b72a3bace836417151 /ext/fetch/20_headers.js | |
parent | 9705efd419ffa05b0d88e788e0ceb77e38078449 (diff) |
fix(ext/webidl): correctly apply [SymbolToStringTag] to interfaces (#11851)
Co-authored-by: Luca Casonato <hello@lcas.dev>
Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
Diffstat (limited to 'ext/fetch/20_headers.js')
-rw-r--r-- | ext/fetch/20_headers.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/ext/fetch/20_headers.js b/ext/fetch/20_headers.js index 7503029d8..a99a297b3 100644 --- a/ext/fetch/20_headers.js +++ b/ext/fetch/20_headers.js @@ -36,7 +36,6 @@ Symbol, SymbolFor, SymbolIterator, - SymbolToStringTag, StringPrototypeReplaceAll, StringPrototypeIncludes, TypeError, @@ -411,10 +410,6 @@ } return `Headers ${inspect(headers)}`; } - - get [SymbolToStringTag]() { - return "Headers"; - } } webidl.mixinPairIterable("Headers", Headers, _iterableHeaders, 0, 1); |