File tree Expand file tree Collapse file tree 3 files changed +0
-4
lines changed Expand file tree Collapse file tree 3 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ class DeflateStream extends ProxyStream {
27
27
set _deflateIndex ( value ) {
28
28
this . chunk . length = value ;
29
29
this . chunk . lengthCheck = value ^ 0xffff ;
30
- return this . chunk . length ;
31
30
}
32
31
33
32
writeStruct ( StructType , data ) {
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ class ProxyStream {
9
9
10
10
set uint8a ( value ) {
11
11
this . stream . uint8a = value ;
12
- return this . stream . uint8a ;
13
12
}
14
13
15
14
get position ( ) {
@@ -18,7 +17,6 @@ class ProxyStream {
18
17
19
18
set position ( value ) {
20
19
this . stream . position = value ;
21
- return this . stream . position ;
22
20
}
23
21
24
22
writeStruct ( StructType , data ) {
Original file line number Diff line number Diff line change @@ -138,7 +138,6 @@ const Bitmap32BE = new BytePrimitive({
138
138
} ) ;
139
139
140
140
let decoder ;
141
- /* global TextDecoder:true */
142
141
if ( typeof TextDecoder === 'undefined' ) {
143
142
decoder = new JSTextDecoder ( ) ;
144
143
} else {
You can’t perform that action at this time.
0 commit comments