From d3782122ec741f7b236e3803aec08583cfd013bd Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Tue, 28 Aug 2018 18:26:15 -0700 Subject: [PATCH] standard --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 3138d83..7c6d709 100644 --- a/index.js +++ b/index.js @@ -26,7 +26,7 @@ CompactToStylishStream.prototype._transform = function (chunk, encoding, cb) { CompactToStylishStream.prototype._flush = function (cb) { var lines = Buffer.concat(this._buffer).toString() - var jsonResults = standardJson(lines, {noisey: true}) + var jsonResults = standardJson(lines, { noisey: true }) var output = processResults(jsonResults) this.push(output)