Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change blobDetect support #69

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Blob.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* Blob.js
* A Blob, File, FileReader & URL implementation.
* 2019-04-19
* 2019-05-01
*
* By Eli Grey, http://eligrey.com
* By Jimmy Wärting, https://github.com/jimmywarting
Expand Down Expand Up @@ -37,7 +37,7 @@

try {
// Check if Blob constructor is supported
blobSupported = new Blob(['ä']).size === 2
blobSupported = new Blob(['\u00e4']).size === 2

// Check if Blob constructor supports ArrayBufferViews
// Fails in Safari 6, so we need to map to ArrayBuffers there.
Expand Down