```js > const c = require('js-string-compression'); > const h = new c.Hauffman(); > h.compress('foo'.repeat(10)).length 7 > h.compress('foo'.repeat(1000)).length 378 ```