Skip to content

Commit

Permalink
style(micro/index): fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
benlesh committed Oct 6, 2015
1 parent 41ec115 commit 164fa4b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions perf/micro/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ Observable.create(function (observer) {
return cycles.merge(complete).take(tests.length + 1);
});
})
.subscribe(console.log.bind(console), function(err) {
if (err.stack === undefined) {
console.log(err);
} else {
console.log(err.stack);
}
});
.subscribe(console.log.bind(console), function (err) {
if (err.stack === undefined) {
console.log(err);
} else {
console.log(err.stack);
}
});

0 comments on commit 164fa4b

Please sign in to comment.