From b5453eee554f109a23c096615415a035de2183f4 Mon Sep 17 00:00:00 2001 From: Eli Grey Date: Wed, 28 Aug 2013 01:17:30 -0400 Subject: [PATCH] Use double quotes instead of single quotes #11 --- Blob.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Blob.js b/Blob.js index 99589ce..5893afc 100644 --- a/Blob.js +++ b/Blob.js @@ -14,8 +14,8 @@ /*! @source http://purl.eligrey.com/github/Blob.js/blob/master/Blob.js */ -if (!(typeof Blob === "function" || typeof Blob === 'object') || typeof URL === "undefined") -if ((typeof Blob === "function" || typeof Blob === 'object') && typeof webkitURL !== "undefined") self.URL = webkitURL; +if (!(typeof Blob === "function" || typeof Blob === "object") || typeof URL === "undefined") +if ((typeof Blob === "function" || typeof Blob === "object") && typeof webkitURL !== "undefined") self.URL = webkitURL; else var Blob = (function (view) { "use strict";