converter/src/app/converter/uridecoder.ts

16 lines
265 B
TypeScript
Raw Normal View History

2016-09-20 20:45:04 +02:00
import {Converter} from "./converter";
export class URIDecoder implements Converter {
getDisplayname(): string {
return "Decode URI";
}
2016-09-20 20:45:04 +02:00
getId(): string {
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
}