UNPKG
roomie
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
ROM metadata helper
roomie
/
dist
/
utils
/
stringHelper.js
9 lines
(8 loc)
•
225 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
export
function
hexEncode
(
input
) {
let
result =
""
;
for
(
let
i =
0
; i < input.
length
; i++) {
const
hex = input.
charCodeAt
(i).
toString
(
16
); result += (
"000"
+ hex).
slice
(-
4
); }
return
result; }