From 566c71f479dd3950a82ce17e5c327022092c0bea Mon Sep 17 00:00:00 2001 From: William Esz Date: Sun, 30 Apr 2017 09:08:38 +0200 Subject: [PATCH] Fix eslint errors --- lib/index.js | 2 +- module/flatmap/test/index.js | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/index.js b/lib/index.js index 5d63389..a8e839b 100644 --- a/lib/index.js +++ b/lib/index.js @@ -641,4 +641,4 @@ StreamTransformer.prototype['@@transducer/init'] = function() { }; StreamTransformer.prototype['@@transducer/result'] = function() { }; StreamTransformer.prototype['@@transducer/step'] = function(s, v) { return v; }; -export default flyd; \ No newline at end of file +export default flyd; diff --git a/module/flatmap/test/index.js b/module/flatmap/test/index.js index 03f2a92..7dd0949 100644 --- a/module/flatmap/test/index.js +++ b/module/flatmap/test/index.js @@ -30,9 +30,7 @@ describe('flatMap', function() { }, flatMap(f, s)); s(1)(3)(5); setImmediate(function() { - assert.deepEqual(result, [2, 3, 4, - 4, 5, 6, - 6, 7, 8]); + assert.deepEqual(result, [2, 3, 4, 4, 5, 6, 6, 7, 8]); }); }); it('passed bug outlined in https://github.com/paldepind/flyd/issues/31', function(done) {