style(all): minor changes

This commit is contained in:
Manu Mtz.-Almeida
2016-11-20 16:00:17 +01:00
parent c002b36a56
commit 6f96ede2ea
3 changed files with 8 additions and 5 deletions

View File

@@ -140,9 +140,7 @@ export const isCheckedProperty = function(a: any, b: any): boolean {
}
// not using strict comparison on purpose
/* tslint:disable */
return (a == b);
/* tslint:enable */
return (a == b); // tslint:disable-line
};