UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

12 lines (9 loc) 348 B
import { Pipe, PipeTransform } from '@angular/core'; import { DomSanitizer, SafeUrl } from '@angular/platform-browser'; @Pipe({ name: 'url' }) export class URLPipe implements PipeTransform { constructor(private dom: DomSanitizer) {} transform(url: string): string | SafeUrl { return url ? this.dom.bypassSecurityTrustUrl(url) : ''; } }