Skip to content
Snippets Groups Projects
safeHtml.pipe.ts 352 B
Newer Older
  • Learn to ignore specific revisions
  • import { Pipe, PipeTransform } from '@angular/core';
    import { DomSanitizer } from '@angular/platform-browser';
    
    @Pipe({
        name: 'safeHtml',
    })
    export class SafeHtmlPipe implements PipeTransform {
    
        constructor(private sanitizer: DomSanitizer) { }
    
        transform(html: string) {
            return this.sanitizer.bypassSecurityTrustHtml(html);
        }
    }