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

9 lines
185 B
JavaScript
Raw Normal View History

2018-02-12 17:26:06 +00:00
exports = module.exports = function OutStream(){
this.lines = [];
this.logline = '';
this.write = function(string) {
this.logline = string;
this.lines.push(string);
}
}