0.0.2 • Published 10 years ago

transformer.buffer-to-ascii v0.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

transformer.buffer-to-ascii

Transformer conversion: buffer to ascii

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

Usage

Use this module through transformer.

Commandline

> echo '<SAMPLE INPUT>' | transform buffer ascii
<SAMPLE OUTPUT>

Javascript

var transformer = require('dat-transformer');
var tBufferToAscii = transformer('buffer', 'ascii');
tBufferToAscii('<SAMPLE INPUT>'); // '<SAMPLE OUTPUT>'