eslinting

This commit is contained in:
Jeff Miccolis 2016-03-29 13:39:48 -04:00 committed by Patrick Niklaus
parent a33edd15b4
commit f34de8422e
3 changed files with 15 additions and 15 deletions

View File

@ -61,7 +61,7 @@ module.exports = function () {
this.Given(/^the query options$/, (table, callback) => { this.Given(/^the query options$/, (table, callback) => {
table.raw().forEach(tuple => { table.raw().forEach(tuple => {
this.queryParams[tuple[0]] = tuple[1] this.queryParams[tuple[0]] = tuple[1];
}); });
callback(); callback();

View File

@ -108,7 +108,7 @@ module.exports = function () {
result.bothw[key] = 'diff'; result.bothw[key] = 'diff';
} }
scb(); scb();
} };
['status', 'time', 'distance', 'speed'].forEach((key) => { ['status', 'time', 'distance', 'speed'].forEach((key) => {
sq.defer(parseRes, key); sq.defer(parseRes, key);

View File

@ -129,7 +129,7 @@ module.exports = function () {
}; };
this.compassList = (instructions) => { this.compassList = (instructions) => {
return this.extractInstructionList(instructions, s => 'n'); // TODO fixme return this.extractInstructionList(instructions, () => 'n'); // TODO fixme
}; };
this.bearingList = (instructions) => { this.bearingList = (instructions) => {