'convertUserText'})
export class convertUserTextPipe implements PipeTransform {
private escapeHtmlPipe: EscapeHtmlPipe = new EscapeHtmlPipe();
private linkyPipe: LinkyPipe = new LinkyPipe();
private trimUserTextPipe: TrimUserTextPipe = new TrimUserTextPipe();
public transform(value: string) {
return [
this.escapeHtmlPipe,
this.trimUserTextPipe,
this.linkyPipe,
].reduce(
(acc: string, cur: PipeTransform) => cur.transform(acc),
value,
);
}
}
почему не охота использовать DI ?
както не явно получится в шаблоне, у тя много таких вызовов чтоли?
Обсуждают сегодня