UNPKG
amrhextotext
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.0
Conversor de Hexadecimal a Texto
github.com/voltican/amrHextoText
voltican/amrHextoText
amrhextotext
/
index.js
5 lines
(4 loc)
•
172 B
JavaScript
View Raw
1
2
3
4
5
'use strict'
const
convert
= (
from
, to
) =>
str
=>
Buffer
.
from
(str,
from
).
toString
(to)
exports
.
textToHex
=
convert
(
'utf8'
,
'hex'
)
exports
.
hexToUtf8
=
convert
(
'hex'
,
'utf8'
)