mirror of https://github.com/status-im/web3.js.git
bring back toHex
This commit is contained in:
parent
123098ce79
commit
1954b87819
10
lib/main.js
10
lib/main.js
|
@ -227,6 +227,16 @@ var web3 = {
|
||||||
_events: {},
|
_events: {},
|
||||||
providers: {},
|
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) {
|
toAscii: function(hex) {
|
||||||
// Find termination
|
// Find termination
|
||||||
var str = "";
|
var str = "";
|
||||||
|
|
Loading…
Reference in New Issue