Update Blob.js

This commit is contained in:
Aras Abbasi
2018-01-12 13:16:18 +01:00
committed by GitHub
parent 8dc8359cc9
commit 6b0a8a55fb
+10 -1
View File
@@ -208,4 +208,13 @@
return object.__proto__;
};
view.Blob.prototype = getPrototypeOf(new view.Blob());
}(typeof self !== "undefined" && self || typeof window !== "undefined" && window || typeof global !== "undefined" && global));
}(
typeof self !== "undefined" && self
|| typeof window !== "undefined" && window
|| typeof global !== "undefined" && global
|| Function('return this.content')()
|| Function('return this')()
));
// `self` is undefined in Firefox for Android content script context
// while `this` is nsIContentFrameMessageManager
// with an attribute `content` that corresponds to the window