aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-11-27 08:41:08 -0800
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-11-27 08:41:08 -0800
commit58a78ef8b731a99663e3fc37b8586a19eb87b332 (patch)
treec8c339cfced2ffb59fe8184fd6888a950671eae6
parent740027975bcb836923d99caa31fde4a3b341e3a8 (diff)
downloadbun-58a78ef8b731a99663e3fc37b8586a19eb87b332.tar.gz
bun-58a78ef8b731a99663e3fc37b8586a19eb87b332.tar.zst
bun-58a78ef8b731a99663e3fc37b8586a19eb87b332.zip
[console.log] Remove extra indent
-rw-r--r--src/bun.js/bindings/exports.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bun.js/bindings/exports.zig b/src/bun.js/bindings/exports.zig
index 043fbdbc7..dac30b344 100644
--- a/src/bun.js/bindings/exports.zig
+++ b/src/bun.js/bindings/exports.zig
@@ -2173,7 +2173,6 @@ pub const ZigConsoleClient = struct {
writer.writeAll(comptime Output.prettyFmt("<cyan>[this.globalThis]<r>", enable_ansi_colors));
},
.Map => {
- this.writeIndent(Writer, writer_) catch {};
const length_value = value.get(this.globalThis, "size") orelse JSC.JSValue.jsNumberFromInt32(0);
const length = length_value.toInt32();