converter/src/app/converter/uridecoder.ts

16 lines
265 B
TypeScript
Raw Normal View History

2017-04-15 19:04:49 +02:00
import {Converter} from './converter';
2016-09-20 20:45:04 +02:00
export class URIDecoder implements Converter {
getDisplayname(): string {
2017-04-15 19:04:49 +02:00
return 'Decode URI';
}
2016-09-20 20:45:04 +02:00
getId(): string {
2017-04-15 19:04:49 +02:00
return 'uridecode';
}
2016-09-20 20:45:04 +02:00
convert(input: string): string {
return decodeURI(input);
}
2016-09-20 20:45:04 +02:00
}