0.1.1 • Published 7 years ago
hexen v0.1.1
hexen
Simple hex encoder/decoder. Useful for hiding information from search engines.
Installation
yarn add hexen
Usage
const hexen = require('hexen');
hexen.enc('Top secret API URL');
=> '546f7020736563726574204150492055524c'
hexen.dec('546f7020736563726574204150492055524c');
=> 'Top secret API URL'