12 lines
366 B
TypeScript
12 lines
366 B
TypeScript
|
import { Pipe, PipeTransform } from '@angular/core';
|
||
|
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
||
|
|
||
|
@Pipe({ name: 'noSanitize' })
|
||
|
export class NoSanitizePipe implements PipeTransform {
|
||
|
constructor(private domSanitizer: DomSanitizer) { }
|
||
|
|
||
|
transform(html: string): SafeHtml {
|
||
|
return this.domSanitizer.bypassSecurityTrustHtml(html);
|
||
|
}
|
||
|
}
|