entropy should be a function.
testString: assert(typeof entropy === 'function');
- text: entropy("0") should return 0
testString: assert.equal(entropy('0'), 0);
- text: entropy("01") should return 1
testString: assert.equal(entropy('01'), 1);
- text: entropy("0123") should return 2
testString: assert.equal(entropy('0123'), 2);
- text: entropy("01234567") should return 3
testString: assert.equal(entropy('01234567'), 3);
- text: entropy("0123456789abcdef") should return 4
testString: assert.equal(entropy('0123456789abcdef'), 4);
- text: entropy("1223334444") should return 1.8464393446710154
testString: assert.equal(entropy('1223334444'), 1.8464393446710154);
```