Skip to content

Commit bdf0d9b

Browse files
danbevBridgeAR
authored andcommitted
fs: point isFd to isUint32
This commit updates the isFd function to call isUint32 instead of doing the same thing. PR-URL: nodejs#20330 Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Tiancheng "Timothy" Gu <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 65021c5 commit bdf0d9b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lib/fs.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,7 @@ function makeStatsCallback(cb) {
153153
};
154154
}
155155

156-
function isFd(path) {
157-
return (path >>> 0) === path;
158-
}
156+
const isFd = isUint32;
159157

160158
fs.Stats = Stats;
161159

0 commit comments

Comments
 (0)