added little hex helper methods

This commit is contained in:
brianc 2010-09-28 23:30:06 -05:00
parent 18e6ec2121
commit 52e53edf63

View File

@ -13,3 +13,11 @@ test = function(name, action) {
test.tabout -= 2;
};
test.tabout = 0;
stringToHex = function(string) {
};
hexToString = function(hexArray) {
return new Buffer(hexArray).toString('utf8');
}