Skip to content

Commit 502288b

Browse files
author
Tony Kovanen
committed
Removed non-breaking space
1 parent 7a921a5 commit 502288b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ module.exports = function(arraybuffer, start, end) {
1212

1313
if (arraybuffer.slice) { return arraybuffer.slice(start, end); }
1414

15-
if (start < 0) { start += bytes; }
15+
if (start < 0) { start += bytes; }
1616
if (end < 0) { end += bytes; }
1717
if (end > bytes) { end = bytes; }
1818

19-
if (start >= bytes || start >= end || bytes == 0) {
19+
if (start >= bytes || start >= end || bytes === 0) {
2020
return new ArrayBuffer(0);
2121
}
2222

0 commit comments

Comments
 (0)