Angular - Standalone Components
Given this standalone pipe:
What will be the output of this template?
@Pipe({name: 'exclaim', standalone: true})
export class ExclaimPipe implements PipeTransform {
transform(value: string): string {
return value + '!';
}
}What will be the output of this template?
<div>{{ 'Hello' | exclaim }}</div>