Skip to content

Commit ae6aea0

Browse files
committed
fs/promise: remove unnecessary Function#bind()
1 parent 2b3eb10 commit ae6aea0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/fs/promises.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ async function rename(oldPath, newPath) {
400400

401401
async function truncate(path, len = 0) {
402402
const fd = await open(path, 'r+');
403-
return ftruncate(fd, len).finally(fd.close.bind(fd));
403+
return ftruncate(fd, len).finally(fd.close);
404404
}
405405

406406
async function ftruncate(handle, len = 0) {

0 commit comments

Comments
 (0)