GT2/GT2-Android/node_modules/logfmt/test/outstream.js

9 lines
185 B
JavaScript

exports = module.exports = function OutStream(){
this.lines = [];
this.logline = '';
this.write = function(string) {
this.logline = string;
this.lines.push(string);
}
}