-
-
Notifications
You must be signed in to change notification settings - Fork 200
Expand file tree
/
Copy pathcheckVM.js
More file actions
43 lines (40 loc) · 960 Bytes
/
checkVM.js
File metadata and controls
43 lines (40 loc) · 960 Bytes
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
/**
* @callback BeforeChecker
* @returns {void}
*/
/**
* @callback VMTestIterator
* @param {"Node vm"|"JSONPath vm"} vmType
* @param {BeforeChecker} beforeChecker
* @returns {void}
*/
/**
* @param {VMTestIterator} cb
* @returns {void}
*/
function checkBuiltInVMAndNodeVM (cb) {
if (typeof process === 'undefined') {
// eslint-disable-next-line n/no-callback-literal -- Convenient
cb('JSONPath vm', () => {
//
});
return;
}
[
'Node vm',
'JSONPath vm'
].forEach((vmType) => {
const checkingBrowserVM = vmType === 'JSONPath vm';
cb(
vmType,
checkingBrowserVM
? () => {
globalThis.jsonpath = globalThis.jsonpathBrowser;
}
: () => {
globalThis.jsonpath = globalThis.jsonpathNodeVM;
}
);
});
}
export {checkBuiltInVMAndNodeVM};