1.0.3 • Published 6 years ago
xxencode v1.0.3
xxencode
Node.js implementation of xxencode.
More information on the xxencode encoding can be found here.
Installation
npm install xxencodeExamples
The following examples show you how to use xxencode.
var xxencode = require('xxencode');
// encode something
var encoded = xxencode.encode('zer0i3');
// '4SaJmA4Yn'
// decode something
var decoded = xxencode.decode('4SaJmA4Yn');
// 'zer0i3'Running Tests
$ npm testNote the xxencode utility must be installed for all tests to pass.