Fixed check for native Blob() support

This commit is contained in:
Eli Grey
2013-01-23 19:48:05 -05:00
parent 0629aa7908
commit 8840b82e38
+3 -2
View File
@@ -1,6 +1,6 @@
/* Blob.js
* A Blob implementation.
* 2013-01-13
* 2013-01-23
*
* By Eli Grey, http://eligrey.com
* By Devin Samarin, https://github.com/eboyjr
@@ -14,7 +14,8 @@
/*! @source http://purl.eligrey.com/github/Blob.js/blob/master/Blob.js */
var Blob = Blob || (function (view) {
if (typeof Blob !== "function")
var Blob = (function (view) {
"use strict";
var BlobBuilder = view.BlobBuilder || view.WebKitBlobBuilder || view.MozBlobBuilder || view.MSBlobBuilder || (function(view) {