/*
* buffered-stream.js: A simple(r) Stream which is partially buffered into memory.
*
* (C) 2010, Mikeal Rogers
*
* Adapted for Flatiron
* (C) 2011, Charlie Robbins & the Contributors
* MIT LICENSE
*
*/
var events = ,
fs = ,
stream = ,
util = ;
//
// ### function BufferedStream (limit)
// #### @limit {number} **Optional** Size of the buffer to limit
// Constructor function for the BufferedStream object responsible for
// maintaining a stream interface which can also persist to memory
// temporarily.
//
var BufferedStream = ;
util.;
Object.;
;
;
;
;
;