We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f34407e commit eab8728Copy full SHA for eab8728
app/azureBlobUploadWorker.js
@@ -1,3 +1,26 @@
1
+(function(){
2
+
3
+ if ("performance" in self === false) {
4
+ self.performance = {};
5
+ }
6
7
+ Date.now = (Date.now || function () { // thanks IE8
8
+ return new Date().getTime();
9
+ });
10
11
+ if ("now" in self.performance === false) {
12
+ var nowOffset = Date.now();
13
14
+ if (performance.timing && performance.timing.navigationStart) {
15
+ nowOffset = performance.timing.navigationStart;
16
17
18
+ self.performance.now = function now() {
19
+ return Date.now() - nowOffset;
20
+ };
21
22
+})();
23
24
(function () {
25
var arrayBufferUtils = (function() {
26
function arraybuffer2WordArray(arrayBuffer) {
0 commit comments