From 5e54b1fc2c569af315de609561c0b8627c891a4f Mon Sep 17 00:00:00 2001 From: ChomeNS <95471003+ChomeNS@users.noreply.github.com> Date: Fri, 1 Nov 2024 20:26:03 +0700 Subject: [PATCH] custom inspect to false --- vm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm.js b/vm.js index 01605b9..87f8d84 100644 --- a/vm.js +++ b/vm.js @@ -66,7 +66,7 @@ parentPort.on('message', (msg) => { nbt, net, axios, - inspect: (input, options) => util.inspect(input, { depth: options.depth }) + inspect: (input, options) => util.inspect(input, { depth: options.depth, customInspect: false }) } })