diff options
-rw-r--r-- | src/bun.js/webcore/response.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bun.js/webcore/response.zig b/src/bun.js/webcore/response.zig index e3a1bbdfd..d6332b993 100644 --- a/src/bun.js/webcore/response.zig +++ b/src/bun.js/webcore/response.zig @@ -4067,7 +4067,7 @@ pub const AnyBlob = union(enum) { // }, .InternalBlob => { if (this.InternalBlob.bytes.items.len == 0) { - return JSC.ArrayBuffer.empty.toJS(global, null); + return JSC.ArrayBuffer.create(global, "", .ArrayBuffer); } var bytes = this.InternalBlob.toOwnedSlice(); |