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