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