diff options
Diffstat (limited to 'ext/console')
-rw-r--r-- | ext/console/01_console.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/console/01_console.js b/ext/console/01_console.js index 761368b57..9b5e6fe1a 100644 --- a/ext/console/01_console.js +++ b/ext/console/01_console.js @@ -1287,6 +1287,7 @@ function getKeys(value, showHidden) { ArrayPrototypePushApply(keys, ArrayPrototypeFilter(symbols, filter)); } } + keys = ArrayPrototypeFilter(keys, (key) => key !== "cause"); return keys; } |