| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 84b698d commit b8f102c
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -890,7 +890,7 @@ function writeSync(fd, buffer, offsetOrOptions, length, position) { | |||
| 890 | 890 | ({ | |
| 891 | 891 | offset = 0, | |
| 892 | 892 | length = buffer.byteLength - offset, | |
| 893 | - position = null | ||
| 893 | + position = null, | ||
| 894 | 894 | } = offsetOrOptions ?? ObjectCreate(null)); | |
| 895 | 895 | } | |
| 896 | 896 | if (position === undefined) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -464,7 +464,7 @@ async function read(handle, bufferOrParams, offset, length, position) { | |||
| 464 | 464 | buffer = Buffer.alloc(16384), | |
| 465 | 465 | offset = 0, | |
| 466 | 466 | length = buffer.byteLength - offset, | |
| 467 | - position = null | ||
| 467 | + position = null, | ||
| 468 | 468 | } = bufferOrParams ?? ObjectCreate(null)); | |
| 469 | 469 | ||
| 470 | 470 | validateBuffer(buffer); | |
@@ -475,7 +475,7 @@ async function read(handle, bufferOrParams, offset, length, position) { | |||
| 475 | 475 | ({ | |
| 476 | 476 | offset = 0, | |
| 477 | 477 | length = buffer.byteLength - offset, | |
| 478 | - position = null | ||
| 478 | + position = null, | ||
| 479 | 479 | } = offset); | |
| 480 | 480 | } | |
| 481 | 481 | ||
@@ -527,7 +527,7 @@ async function write(handle, buffer, offsetOrOptions, length, position) { | |||
| 527 | 527 | ({ | |
| 528 | 528 | offset = 0, | |
| 529 | 529 | length = buffer.byteLength - offset, | |
| 530 | - position = null | ||
| 530 | + position = null, | ||
| 531 | 531 | } = offsetOrOptions ?? ObjectCreate(null)); | |
| 532 | 532 | } | |
| 533 | 533 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments