lbry-desktop/ui/util/hex.js

9 lines
183 B
JavaScript
Raw Normal View History

// @flow
export function toHex(str: string): string {
var result = '';
for (var i = 0; i < str.length; i++) {
result += str.charCodeAt(i).toString(16);
}
return result;
}