mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-22 07:46:16 -04:00
use utils.inspect.custom Rready for node v12
This commit is contained in:
parent
1f771a9e01
commit
20bb104006
2 changed files with 11 additions and 2 deletions
|
@ -4,6 +4,7 @@
|
|||
* @license Apache-2.0
|
||||
*/
|
||||
|
||||
import util from "util";
|
||||
import Utils from "../core/Utils";
|
||||
import Dish from "../core/Dish";
|
||||
import BigNumber from "bignumber.js";
|
||||
|
@ -48,6 +49,14 @@ class SyncDish extends Dish {
|
|||
}
|
||||
|
||||
/**
|
||||
* What we want to log to the console.
|
||||
*/
|
||||
[util.inspect.custom](depth, options) {
|
||||
return this.get(Dish.typeEnum("string"));
|
||||
}
|
||||
|
||||
/**
|
||||
* Backwards compatibility for node v6
|
||||
* Log only the value to the console in node.
|
||||
*/
|
||||
inspect() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue