Skip to content

Commit d31f4f4

Browse files
committed
buffer: remove lines setting indexes to integer value
1 parent 07f481c commit d31f4f4

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

lib/internal/blob.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,14 +243,12 @@ class Blob {
243243
} else {
244244
start = MathMin(start, this[kLength]);
245245
}
246-
start |= 0;
247246

248247
if (end < 0) {
249248
end = MathMax(this[kLength] + end, 0);
250249
} else {
251250
end = MathMin(end, this[kLength]);
252251
}
253-
end |= 0;
254252

255253
contentType = `${contentType}`;
256254
if (RegExpPrototypeExec(disallowedTypeCharacters, contentType) !== null) {

0 commit comments

Comments
 (0)