converter/src/app/converter/quotedprintableencoder.ts

21 lines
513 B
TypeScript
Raw Normal View History

2016-09-20 22:02:38 +02:00
import {Converter} from "./converter";
import {NativeLibraryWrapperService} from "../nativelibrarywrapper.service";
2016-09-20 22:02:38 +02:00
export class QuotedPrintableEncoder implements Converter {
2017-03-15 00:09:57 +01:00
constructor(private nativeLibraryWrapperService: NativeLibraryWrapperService) {
}
2016-09-20 22:02:38 +02:00
getDisplayname(): string {
return "Encode quoted printable";
}
2016-09-20 22:02:38 +02:00
getId(): string {
return "encodequotedprintable";
}
2016-09-20 22:02:38 +02:00
convert(input: string): string {
return this.nativeLibraryWrapperService.quotedPrintable.encode(input);
}
2016-09-20 22:02:38 +02:00
}