mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
Spacing
This commit is contained in:
@@ -790,8 +790,9 @@ pub const Map = struct {
|
||||
var iterator = self.map.iterator();
|
||||
|
||||
_ = try writer.writeAll("{");
|
||||
|
||||
while (iterator.next()) |entry| {
|
||||
_ = try writer.writeAll("\n ");
|
||||
|
||||
std.json.stringify(entry.key_ptr.*, options, writer) catch unreachable;
|
||||
|
||||
_ = try writer.writeAll(": ");
|
||||
@@ -803,7 +804,7 @@ pub const Map = struct {
|
||||
}
|
||||
}
|
||||
|
||||
try writer.writeAll("}");
|
||||
try writer.writeAll("\n}");
|
||||
}
|
||||
|
||||
pub inline fn get(
|
||||
|
||||
Reference in New Issue
Block a user