forked from alvaro-cuesta/townsclipper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
71 lines (60 loc) · 1020 Bytes
/
index.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
const {
clipToBits,
bitsToClip,
BITS_PER_CHAR,
} = require('./clip-bits')
const {
bitsToDense,
denseToBits,
} = require('./bits-dense')
const {
denseToSparse,
sparseToDense,
} = require('./dense-sparse')
const {
clipToDense,
denseToClip,
bitsToSparse,
sparseToBits,
sparseToClip,
clipToSparse,
convertToString,
} = require('./multistep')
const {
cleanBits,
cleanClip,
padInputBits,
removePadding,
} = require('./util')
const {
EMPTY_TYPE,
GROUND_TYPE,
MAX_TYPE_COUNT,
MAX_TYPE,
MAX_HEIGHT,
} = require('./constants')
module.exports = {
clipToBits,
bitsToClip,
BITS_PER_CHAR,
bitsToDense,
denseToBits,
denseToSparse,
sparseToDense,
clipToDense,
denseToClip,
bitsToSparse,
sparseToBits,
sparseToClip,
clipToSparse,
convertToString,
cleanBits,
cleanClip,
padInputBits,
removePadding,
EMPTY_TYPE,
GROUND_TYPE,
MAX_TYPE_COUNT,
MAX_TYPE,
MAX_HEIGHT,
}