0.1.0 • Published 11 years ago

pig-stream v0.1.0

Weekly downloads
5
License
-
Repository
github
Last release
11 years ago

Pig Latin Transform Stream

Things he do

The PLTS transforms any string input into Pig Latin.

WHY!?

I made PLTS because I really wanted to try implementing streams and Pig Latin came to mind... because ywhay otnay?

Usage

To convert any input into pig latin, just pass a stream through the PLTS.

var PigStream = require('pig-stream');
var pstream = new PigStream;

process.stdin.pipe(pstream).pipe(process.stdout);