npm install encoded> Encode things
```
$ npm install --save encoded
`js
const encoded = require('encoded');
encoded.encode('unicorns');
//=> 'dW5pY29ucw=='
encoded.decode('cmFpbmJvd3M=');
//=> 'rainbows'
`
#### input
Type: any
The data you want to encode.
#### type
Type: stringbase64
Default:
How you want the data to be encoded.
#### input
Type: string
An encoded string.
#### type
Type: stringbase64
Default:
How the string is encoded.
#### to
Type: stringascii`
Default:
What you want to get back.
MIT © Tobias Herber