Package Exports
- uuencode
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (uuencode) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
uuencode
Node.js implementation of the Unix program uuencode.
More information on the uuencode encoding can be found here.
Installation
npm install -g uuencode
Examples
The following examples show you how to use uuencode.
var uuencode = require('uuencode');
// encode something
var encoded = uuencode.encode('Unix-to-Unix encoding');
// '556YI>"UT;RU5;FEX(&5N8V]D:6YG\n'
// decode something
var decoded = uuencode.decode('556YI>"UT;RU5;FEX(&5N8V]D:6YG\n');
// 'Unix-to-Unix encoding'
Running Tests
$ npm test