forked from handsontable/formula-parser
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.js
More file actions
40 lines (39 loc) · 652 Bytes
/
index.js
File metadata and controls
40 lines (39 loc) · 652 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
import {Parser, SUPPORTED_FORMULAS} from './src/parser';
import {
default as error,
ERROR,
ERROR_DIV_ZERO,
ERROR_NAME,
ERROR_NOT_AVAILABLE,
ERROR_NULL,
ERROR_NUM,
ERROR_REF,
ERROR_VALUE
} from './src/error';
import {
extractLabel,
toLabel,
columnIndexToLabel,
columnLabelToIndex,
rowIndexToLabel,
rowLabelToIndex
} from './src/helper/cell';
export {
SUPPORTED_FORMULAS,
ERROR,
ERROR_DIV_ZERO,
ERROR_NAME,
ERROR_NOT_AVAILABLE,
ERROR_NULL,
ERROR_NUM,
ERROR_REF,
ERROR_VALUE,
Parser,
error,
extractLabel,
toLabel,
columnIndexToLabel,
columnLabelToIndex,
rowIndexToLabel,
rowLabelToIndex
};