We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using Node 10, I get this warning when logging an option:
option
DeprecationWarning: Custom inspection function on Objects via .inspect() is deprecated
I believe this is because the type implements an inspect function, which is used to format the string when logging.
inspect
We should update this to instead use the new symbol based API: https://nodejs.org/api/util.html#util_custom_inspection_functions_on_objects
The text was updated successfully, but these errors were encountered:
Duplicate of #408
Sorry, something went wrong.
No branches or pull requests
Using Node 10, I get this warning when logging an
option
:I believe this is because the type implements an
inspect
function, which is used to format the string when logging.We should update this to instead use the new symbol based API: https://nodejs.org/api/util.html#util_custom_inspection_functions_on_objects
The text was updated successfully, but these errors were encountered: