8 lines
198 B
TypeScript
8 lines
198 B
TypeScript
import { Pipe, PipeTransform } from '@angular/core';
|
|
|
|
@Pipe({ name: 'decodeURI' })
|
|
export class DecodeURIPipe implements PipeTransform {
|
|
transform(input: any) {
|
|
return decodeURI(input);
|
|
}
|
|
}
|