Skip to content

Commit

Permalink
fs: add trailing commas
Browse files Browse the repository at this point in the history
PR-URL: #43127
Co-authored-by: Antoine du Hamel <[email protected]>
Reviewed-By: Antoine du Hamel <[email protected]>
Reviewed-By: Akhil Marsonya <[email protected]>
  • Loading branch information
2 people authored and danielleadams committed Jun 27, 2022
1 parent d0a2100 commit d5b5a26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/internal/fs/promises.js
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ async function read(handle, bufferOrOptions, offset, length, position) {
buffer = Buffer.alloc(16384),
offset = 0,
length = buffer.byteLength - offset,
position = null
position = null,
} = bufferOrOptions);

validateBuffer(buffer);
Expand Down

0 comments on commit d5b5a26

Please sign in to comment.