bring back toHex

This commit is contained in:
caktux 2014-12-30 11:59:33 -05:00
parent 123098ce79
commit 1954b87819
1 changed files with 10 additions and 0 deletions

View File

@ -227,6 +227,16 @@ var web3 = {
_events: {},
providers: {},
toHex: function(str) {
var hex = "";
for(var i = 0; i < str.length; i++) {
var n = str.charCodeAt(i).toString(16);
hex += n.length < 2 ? '0' + n : n;
}
return hex;
},
toAscii: function(hex) {
// Find termination
var str = "";