We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better, and to empower everyone to share their knowledge.
var stringToHex = function(str) { var hex, i; var result = "0x"; for (i = 0; i < str.length; i++) { hex = str.charCodeAt(i).toString(16); result += hex; } return result } var hexToString = function(hex) { var i; var hexes = hex.match(/.{1,2}/g) || []; var result = ""; for(i = 0; i < hexes.length; i++) { result += String.fromCharCode(parseInt(hexes[i], 16)); } return result; } module.exports = { stringToHex, hexToString }
2.2K Point(s)
1.2K Point(s)
313 Point(s)
178 Point(s)
138 Point(s)
Input your email to receive reset password link, or if you remember your password, you can click