UNPKG
@3id/common
Version:
latest (0.4.1)
next (0.4.1-rc.1)
0.4.1
0.4.1-rc.1
0.4.1-rc.0
0.4.1-alpha.1
0.4.1-alpha.0
0.4.0-alpha.1
0.4.0-alpha.0
0.3.0
0.2.1
0.2.0
0.1.3
0.1.1
## Installation
github.com/ceramicstudio/js-3id
ceramicstudio/3id-connect
@3id/common
/
dist
/
utils.js
8 lines
(7 loc)
•
194 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
{ fromString, toString }
from
'uint8arrays'
;
export
function
fromHex
(
hex
) {
return
fromString
(hex,
'base16'
); }
export
function
toHex
(
bytes
) {
return
toString
(bytes,
'base16'
); }