diff options
author | 2022-07-24 01:22:14 -0700 | |
---|---|---|
committer | 2022-07-24 01:22:33 -0700 | |
commit | bdf6b3e31211d55532c5f5c01cea228b1d6133ef (patch) | |
tree | a32a26cfe236d9615f2064d78fa0819b99c06c74 | |
parent | af36e99317d89eab7fcc3cfcde399496542c3ed0 (diff) | |
download | bun-bdf6b3e31211d55532c5f5c01cea228b1d6133ef.tar.gz bun-bdf6b3e31211d55532c5f5c01cea228b1d6133ef.tar.zst bun-bdf6b3e31211d55532c5f5c01cea228b1d6133ef.zip |
Wire up `console.log(new Blob)`
-rw-r--r-- | src/bun.js/bindings/exports.zig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/bun.js/bindings/exports.zig b/src/bun.js/bindings/exports.zig index c70511e71..69d3ae80e 100644 --- a/src/bun.js/bindings/exports.zig +++ b/src/bun.js/bindings/exports.zig @@ -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 => {}, } } |