Merge pull request #56 from arasabbasi/patch-1

fix rollup error
This commit is contained in:
Eli Grey
2018-01-12 04:46:51 -08:00
committed by GitHub
+7 -2
View File
@@ -1,6 +1,6 @@
/* Blob.js /* Blob.js
* A Blob implementation. * A Blob implementation.
* 2014-07-24 * 2018-01-12
* *
* By Eli Grey, http://eligrey.com * By Eli Grey, http://eligrey.com
* By Devin Samarin, https://github.com/dsamarin * By Devin Samarin, https://github.com/dsamarin
@@ -208,4 +208,9 @@
return object.__proto__; return object.__proto__;
}; };
view.Blob.prototype = getPrototypeOf(new view.Blob()); view.Blob.prototype = getPrototypeOf(new view.Blob());
}(typeof self !== "undefined" && self || typeof window !== "undefined" && window || this.content || this)); }(
typeof self !== "undefined" && self
|| typeof window !== "undefined" && window
|| typeof global !== "undefined" && global
|| this
));