style: format code for consistency and readability
This commit is contained in:
parent
69d26e89b7
commit
386813c524
44 changed files with 566 additions and 370 deletions
|
@ -1,11 +1,11 @@
|
|||
import {Pipe, PipeTransform} from '@angular/core';
|
||||
import { Pipe, PipeTransform } from '@angular/core';
|
||||
|
||||
@Pipe({
|
||||
name: 'jkcurrency',
|
||||
standalone: true
|
||||
standalone: true,
|
||||
})
|
||||
export class CurrencyPipe implements PipeTransform {
|
||||
transform(value: string): string {
|
||||
return value.replaceAll("L", "P");
|
||||
return value.replaceAll('L', 'P');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue