Coverage

100%
5
5
0

/Users/sebastiansandqvist/Documents/Sites & Projects/apps/modules/s-binary/index.js

100%
5
5
0
LineHitsSource
11var binary = module.exports = {};
2
31binary.toInt = function(str) {
44 return parseInt(str, 2);
5};
6
71binary.toHex = function(str) {
82 return parseInt(str, 2).toString(16);
9};