Let linting exit with a nonzero status

This commit is contained in:
courtneypattison
2017-11-29 14:08:11 -08:00
parent b906fb2ef1
commit 7083503ccd
7 changed files with 10 additions and 15 deletions

View File

@@ -18,7 +18,7 @@ export class RouteService {
}
hasQueryParam(paramName: string): Observable<boolean> {
return this.route.queryParamMap.map((map) => {return map.has(paramName);});
return this.route.queryParamMap.map((map) => map.has(paramName));
}
hasQueryParamWithValue(paramName: string, paramValue: string): Observable<boolean> {