Skip to content

Commit

Permalink
Wire up console.log(new Blob)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarred-Sumner committed Jul 24, 2022
1 parent af36e99 commit bdf6b3e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/bun.js/bindings/exports.zig
Original file line number Diff line number Diff line change
Expand Up @@ -1753,6 +1753,11 @@ pub const ZigConsoleClient = struct {
request.writeFormat(this, writer_, enable_ansi_colors) catch {};
return;
},
.Blob => {
var request = priv_data.as(JSC.WebCore.Blob);
request.writeFormat(this, writer_, enable_ansi_colors) catch {};
return;
},
else => {},
}
}
Expand Down

0 comments on commit bdf6b3e

Please sign in to comment.