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
IMHO, the error message of ERR_VALUE_OUT_OF_RANGE is more detailed instead of a simple string('The "%s" argument is out of range') of ERR_OUT_OF_RANGE, so we might be able to migrate the ERR_OUT_OF_RANGE into ERR_VALUE_OUT_OF_RANGE.
Version: nodejs/node:master
Platform: all
Subsystem: errors
The text was updated successfully, but these errors were encountered:
There two similar error codes in lib: "ERR_VALUE_OUT_OF_RANGE"
and "ERR_OUT_OF_RANGE". This change is to reduce them into
"ERR_VALUE_OUT_OF_RANGE"
Fixes: nodejs#17603
Now there are two similar error codes in lib:
Should we reduce them into one?
IMHO, the error message of
ERR_VALUE_OUT_OF_RANGE
is more detailed instead of a simple string('The "%s" argument is out of range'
) ofERR_OUT_OF_RANGE
, so we might be able to migrate theERR_OUT_OF_RANGE
intoERR_VALUE_OUT_OF_RANGE
.The text was updated successfully, but these errors were encountered: