Chore: ng lint using the recommended @angular-eslint style
This commit is contained in:
@ -5,7 +5,9 @@ import { Pipe, PipeTransform } from '@angular/core';
|
||||
})
|
||||
export class ClearPipe implements PipeTransform {
|
||||
transform(value: string | null): string {
|
||||
if (value === null) return '';
|
||||
if (value === null) {
|
||||
return '';
|
||||
}
|
||||
return value === '₹ 0.00' || value === '0.00' ? '' : value;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user