mirror of
https://github.com/nodejs/node.git
synced 2025-08-16 06:08:50 +02:00
errors: improve ERR_INVALID_ARG_TYPE
ERR_INVALID_ARG_TYPE is the most common error used throughout the code base. This improves the error message by providing more details to the user and by indicating more precisely which values are allowed ones and which ones are not. It adds the actual input to the error message in case it's a primitive. If it's a class instance, it'll print the class name instead of "object" and "falsy" or similar entries are not named "type" anymore. PR-URL: https://github.com/nodejs/node/pull/29675 Reviewed-By: Rich Trott <rtrott@gmail.com>
This commit is contained in:
parent
fc28761d77
commit
ac2fc0dd5f
127 changed files with 665 additions and 534 deletions
|
@ -72,7 +72,7 @@ const s = http.createServer(common.mustCall((req, res) => {
|
|||
code: 'ERR_INVALID_ARG_TYPE',
|
||||
type: TypeError,
|
||||
message: 'The "name" argument must be of type string. ' +
|
||||
'Received type undefined'
|
||||
'Received undefined'
|
||||
}
|
||||
);
|
||||
common.expectsError(
|
||||
|
@ -81,7 +81,7 @@ const s = http.createServer(common.mustCall((req, res) => {
|
|||
code: 'ERR_INVALID_ARG_TYPE',
|
||||
type: TypeError,
|
||||
message: 'The "name" argument must be of type string. ' +
|
||||
'Received type undefined'
|
||||
'Received undefined'
|
||||
}
|
||||
);
|
||||
|
||||
|
@ -124,8 +124,8 @@ const s = http.createServer(common.mustCall((req, res) => {
|
|||
{
|
||||
code: 'ERR_INVALID_ARG_TYPE',
|
||||
type: TypeError,
|
||||
message: 'The "name" argument must be of type string. ' +
|
||||
`Received type ${typeof val}`
|
||||
message: 'The "name" argument must be of type string.' +
|
||||
common.invalidArgTypeHelper(val)
|
||||
}
|
||||
);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue