Skip to content

Commit

Permalink
squash: fix DEP number
Browse files Browse the repository at this point in the history
  • Loading branch information
LiviaMedeiros committed Nov 3, 2024
1 parent d5b465c commit 5369c71
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/fs.js
Original file line number Diff line number Diff line change
Expand Up @@ -3283,7 +3283,7 @@ ObjectDefineProperties(fs, {
return F_OK || 0;
},
'fs.F_OK is deprecated, use fs.constants.F_OK instead',
'DEP0175',
'DEP0176',
),
},
R_OK: {
Expand All @@ -3294,7 +3294,7 @@ ObjectDefineProperties(fs, {
return R_OK || 0;
},
'fs.R_OK is deprecated, use fs.constants.R_OK instead',
'DEP0175',
'DEP0176',
),
},
W_OK: {
Expand All @@ -3305,7 +3305,7 @@ ObjectDefineProperties(fs, {
return W_OK || 0;
},
'fs.W_OK is deprecated, use fs.constants.W_OK instead',
'DEP0175',
'DEP0176',
),
},
X_OK: {
Expand All @@ -3316,7 +3316,7 @@ ObjectDefineProperties(fs, {
return X_OK || 0;
},
'fs.X_OK is deprecated, use fs.constants.X_OK instead',
'DEP0175',
'DEP0176',
),
},
constants: {
Expand Down

0 comments on commit 5369c71

Please sign in to comment.