github.com/cloudcredo/cloudrocker@v0.0.0-20160108110610-1320f8cc2dfd/sample-apps/node/node_modules/logfmt/test/outstream.js (about)

     1  exports = module.exports = function OutStream(){
     2    this.lines = [];
     3    this.logline = '';
     4    this.write = function(string) {
     5      this.logline = string;
     6      this.lines.push(string);
     7    }
     8  }