chore(router): clang-format

This commit is contained in:
vsavkin
2016-06-24 12:30:11 -07:00
parent 54edce2bab
commit 327d04c9c6
2 changed files with 6 additions and 11 deletions

View File

@ -6,7 +6,7 @@
* found in the LICENSE file at https://angular.io/license
*/
export function shallowEqualArrays(a:any[], b:any[]):boolean {
export function shallowEqualArrays(a: any[], b: any[]): boolean {
if (a.length !== b.length) return false;
for (let i = 0; i < a.length; ++i) {
if (!shallowEqual(a[i], b[i])) return false;