Skip to content

nathanfaucett/js-hex_encoding

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hex encoding

hex encoding/decoding for the browser and node.js

var hex = require("hex_encoding");


hexEncoding.stringToBytes(
    "7468697320697320612074657374"
) === [116, 104, 105, 115, 32, 105, 115, 32, 97, 32, 116, 101, 115, 116];

hexEncoding.bytesToString(
    [116, 104, 105, 115, 32, 105, 115, 32, 97, 32, 116, 101, 115, 116]
) === "7468697320697320612074657374";

About

hex encoding for the browser and node.js

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published