Skip to content

Commit

Permalink
change Blob to global.Blob
Browse files Browse the repository at this point in the history
  • Loading branch information
tmisirpash authored and bjornstar committed Jun 30, 2024
1 parent ae2bd38 commit 53d1119
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Blob.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@
}

if (global.Blob) {
BlobBuilderConstructor.prototype = Blob.prototype;
BlobConstructor.prototype = Blob.prototype;
BlobBuilderConstructor.prototype = global.Blob.prototype;
BlobConstructor.prototype = global.Blob.prototype;
}

/********************************************************/
Expand Down

0 comments on commit 53d1119

Please sign in to comment.