angular-hotel-manager/src/currency.pipe.ts

11 lines
242 B
TypeScript

import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'jkcurrency',
standalone: true,
})
export class CurrencyPipe implements PipeTransform {
transform(value: string): string {
return value.replaceAll('L', 'P');
}
}