From 0b26b5b08c3cd03b70a668695297aa253ce67e9e Mon Sep 17 00:00:00 2001 From: Aras Abbasi Date: Thu, 11 Jan 2018 13:52:16 +0100 Subject: [PATCH] fix rollup error --- Blob.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Blob.js b/Blob.js index 6c3a255..6f26453 100644 --- a/Blob.js +++ b/Blob.js @@ -208,4 +208,4 @@ return object.__proto__; }; 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 || Function('return this.content')() || Function('return this')()));