13 lines
368 B
TypeScript
13 lines
368 B
TypeScript
import { Pipe, PipeTransform} from '@angular/core'
|
|
|
|
import { DomSanitizer, SafeUrl } from '@angular/platform-browser'
|
|
|
|
@Pipe({ name: 'safeHtml'})
|
|
export class SafeHtmlPipe implements PipeTransform {
|
|
constructor(private sanitized: DomSanitizer) {}
|
|
|
|
transform(value):SafeUrl {
|
|
return this.sanitized.bypassSecurityTrustHtml(value.replace(/ /g,''));
|
|
}
|
|
}
|