tslint changes

This commit is contained in:
Jeremy Simpson
2019-08-30 01:52:40 -07:00
parent 7603879d35
commit 7f7efbb94b
446 changed files with 70650 additions and 70661 deletions
+5 -5
View File
@@ -1,11 +1,11 @@
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'siteName',
name: 'siteName',
})
export class SiteNamePipe implements PipeTransform {
transform(value: string | undefined) {
const match = String(value || '').match(/(\w+)\.com/);
return match && match[1];
}
transform(value: string | undefined) {
const match = String(value || '').match(/(\w+)\.com/);
return match && match[1];
}
}