mirror of
https://github.com/danbulant/discord.js
synced 2026-05-27 14:02:02 +00:00
fix(APIRouter): use proper symbol for util.inspect (#3589)
This commit is contained in:
parent
cbde819b6a
commit
100360705a
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ const noop = () => {}; // eslint-disable-line no-empty-function
|
|||
const methods = ['get', 'post', 'delete', 'patch', 'put'];
|
||||
const reflectors = [
|
||||
'toString', 'valueOf', 'inspect', 'constructor',
|
||||
Symbol.toPrimitive, Symbol.for('util.inspect.custom'),
|
||||
Symbol.toPrimitive, Symbol.for('nodejs.util.inspect.custom'),
|
||||
];
|
||||
|
||||
function buildRoute(manager) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue