-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpre.js
75 lines (71 loc) · 1.53 KB
/
pre.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
'use strict';
let Module;
(function () {
function getCurrentPathBrowser() {
if (
typeof WorkerGlobalScope !== 'undefined' &&
self instanceof WorkerGlobalScope
) {
return self.location.href;
}
var sc = document.getElementsByTagName('script');
for (var idx = 0; idx < sc.length; idx++) {
var s = sc.item(idx);
if (s.src && s.src.match(/libsvm\.js$/)) {
return s.src;
}
}
return window.location.href;
}
function getModuleForBrowser() {
let URL;
if (
typeof WorkerGlobalScope !== 'undefined' &&
self instanceof WorkerGlobalScope
) {
URL = self.URL;
} else {
URL = window.URL;
}
var resolve;
var promise = new Promise((res, rej) => {
resolve = res;
});
var path = getCurrentPathBrowser();
var Module = {
locateFile(url) {
return new URL(url, path).href;
},
onRuntimeInitialized() {
resolve();
},
load() {
return promise;
}
};
return Module;
}
function getModuleForNode() {
var resolve;
var promise = new Promise((res) => {
resolve = res;
});
var Module = {
locateFile(url) {
return `${__dirname}/${url}`;
},
onRuntimeInitialized() {
resolve();
},
load() {
return promise;
}
};
return Module;
}
if (typeof window === 'undefined' && typeof self === 'undefined') {
Module = getModuleForNode();
} else {
Module = getModuleForBrowser();
}
})();