diff options
Diffstat (limited to 'ext')
-rw-r--r-- | ext/console/02_console.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/console/02_console.js b/ext/console/02_console.js index faea692af..f82057771 100644 --- a/ext/console/02_console.js +++ b/ext/console/02_console.js @@ -390,7 +390,7 @@ function inspectFunction(value, inspectOptions) { // from MDN spec return cyan(`${refStr}[${cstrName}: ${value.name}]`) + suffix; } - return cyan(`${refStr}[${cstrName}]`) + suffix; + return cyan(`${refStr}[${cstrName} (anonymous)]`) + suffix; } function inspectIterable( |