Skip to content

Commit a275155

Browse files
panvaRafaelGSS
authored andcommittedNov 29, 2023
stream: add Symbol.toStringTag to Compression Streams
PR-URL: #50712 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
1 parent 36380eb commit a275155

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed
 

‎lib/internal/webstreams/compression.js

+11
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
const {
44
ObjectDefineProperties,
5+
SymbolToStringTag,
56
} = primordials;
67

78
const {
@@ -137,11 +138,21 @@ class DecompressionStream {
137138
ObjectDefineProperties(CompressionStream.prototype, {
138139
readable: kEnumerableProperty,
139140
writable: kEnumerableProperty,
141+
[SymbolToStringTag]: {
142+
__proto__: null,
143+
configurable: true,
144+
value: 'CompressionStream',
145+
},
140146
});
141147

142148
ObjectDefineProperties(DecompressionStream.prototype, {
143149
readable: kEnumerableProperty,
144150
writable: kEnumerableProperty,
151+
[SymbolToStringTag]: {
152+
__proto__: null,
153+
configurable: true,
154+
value: 'DecompressionStream',
155+
},
145156
});
146157

147158
module.exports = {

‎test/parallel/test-whatwg-webstreams-compression.js

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ async function test(format) {
1515
const gzip = new CompressionStream(format);
1616
const gunzip = new DecompressionStream(format);
1717

18+
assert.strictEqual(gzip[Symbol.toStringTag], 'CompressionStream');
19+
assert.strictEqual(gunzip[Symbol.toStringTag], 'DecompressionStream');
20+
1821
gzip.readable.pipeTo(gunzip.writable).then(common.mustCall());
1922

2023
const reader = gunzip.readable.getReader();

0 commit comments

Comments
 (0)
Please sign in to comment.