UNPKG
radix-compression
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
A prefix tree for compressing long strings
github.com/incrediblesound/radix
incrediblesound/radix
radix-compression
/
test.js
9 lines
(5 loc)
•
198 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
var
Radix
=
require
(
'./main.js'
).
Radix
;
var
tree =
new
Radix
(); tree.
documentInsert
(
'Welcome to the future of cool npm modules'
);
console
.
log
(tree.
countChars
());
console
.
log
(tree.
reconstruct
());