You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 22, 2023. It is now read-only.
I am not sure about the other error codes, but the value used in require('constants') for ENOENT is showing up as '2'. However, when I do a stat on a non existent file/folder, the errno is actually 32. This value corresponds to the UV_ENOENT enum value but not the ENOENT system value.
Some questions:
Is there a reason the UV ENOENT value is set to something different than the system value?
is require constants deprecated? How else would one be able to examine the error codes?
If it is not deprecated, should it be updated to use the UV constants vs the system ones?