Skip to content

Commit 4be971f

Browse files
committed
style: fix lint
1 parent 4d266f1 commit 4be971f

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

src/coders/deflate-stream.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ class DeflateStream extends ProxyStream {
2727
set _deflateIndex (value) {
2828
this.chunk.length = value;
2929
this.chunk.lengthCheck = value ^ 0xffff;
30-
return this.chunk.length;
3130
}
3231

3332
writeStruct (StructType, data) {

src/coders/proxy-stream.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ class ProxyStream {
99

1010
set uint8a (value) {
1111
this.stream.uint8a = value;
12-
return this.stream.uint8a;
1312
}
1413

1514
get position () {
@@ -18,7 +17,6 @@ class ProxyStream {
1817

1918
set position (value) {
2019
this.stream.position = value;
21-
return this.stream.position;
2220
}
2321

2422
writeStruct (StructType, data) {

src/squeak/byte-primitives.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,6 @@ const Bitmap32BE = new BytePrimitive({
138138
});
139139

140140
let decoder;
141-
/* global TextDecoder:true */
142141
if (typeof TextDecoder === 'undefined') {
143142
decoder = new JSTextDecoder();
144143
} else {

0 commit comments

Comments
 (0)