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')()));