-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathindex.js
More file actions
33 lines (30 loc) · 701 Bytes
/
index.js
File metadata and controls
33 lines (30 loc) · 701 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
import { AlgorithmEngine } from './AlgorithmEngine.js';
import { AlgorithmEngineEx } from './AlgorithmEngineEx.js';
import { AlgorithmEngineHelper } from './AlgorithmEngineHelper.js';
import { Operand } from './Operand.js';
import * as Enums from './Enums/index.js';
export {
AlgorithmEngine,
AlgorithmEngineEx,
AlgorithmEngineHelper,
Operand,
Enums
};
export default {
AlgorithmEngine,
AlgorithmEngineEx,
AlgorithmEngineHelper,
Operand,
Enums
};
// Browser support
if (typeof window !== 'undefined') {
window.ToolGood = window.ToolGood || {};
window.ToolGood.Algorithm = {
AlgorithmEngine,
AlgorithmEngineEx,
AlgorithmEngineHelper,
Operand,
Enums
};
}