mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-12 05:43:03 -05:00
18 lines
423 B
TypeScript
18 lines
423 B
TypeScript
import { inject, Pipe, PipeTransform } from '@angular/core';
|
|
import { map } from 'rxjs';
|
|
import { CurrencyService } from './currency.service';
|
|
|
|
@Pipe({
|
|
name: 'currency',
|
|
standalone: true,
|
|
})
|
|
export class CurrencyPipe implements PipeTransform {
|
|
currencyService = inject(CurrencyService);
|
|
|
|
transform(price: number) {
|
|
return this.currencyService.symbol$.pipe(
|
|
map((s) => `${String(price)}${s}`)
|
|
);
|
|
}
|
|
}
|