Skip to content

jbenet/transformer.base64

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

transformer.base64

Transformer type: base64 encoded data in ascii

This module is a transformer type, published on npm. Read more about transformer at:

Usage

Use this module through transformer.

Commandline

> echo 'beep boop' | transform ascii base64
YmVlcCBib29w

> echo 'YmVlcCBib29w' | transform base64 ascii
beep boop

Javascript

var transformer = require('dat-transformer');
var ascii2base64 = transformer('ascii', 'base64');
ascii2base64('beep boop'); // YmVlcCBib29w

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published