Skip to content
This repository has been archived by the owner on Jul 30, 2018. It is now read-only.

Commit

Permalink
Code style
Browse files Browse the repository at this point in the history
  • Loading branch information
umaar committed Nov 7, 2017
1 parent 1a3941b commit 4a35fd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ export class Router<C extends Context> extends Evented implements RouterInterfac
}

getOutlet(outletId: string | string[]): OutletContext | undefined {
const outletIds = Array.isArray(outletId) ? outletId : [outletId];
const outletIds = Array.isArray(outletId) ? outletId : [ outletId ];
let matchingOutlet: OutletContext | undefined = undefined;
let matchingParams: Parameters = {};
let matchingLocation = '';
Expand Down

0 comments on commit 4a35fd0

Please sign in to comment.