Skip to content

Commit

Permalink
Fix eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
flagello committed Apr 30, 2017
1 parent 8181cc0 commit 566c71f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
export default flyd;
4 changes: 1 addition & 3 deletions module/flatmap/test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 566c71f

Please sign in to comment.