2016-09-20 22:34:31 +02:00
|
|
|
import {Injectable} from "@angular/core";
|
|
|
|
|
|
|
|
declare var utf8:any;
|
|
|
|
declare var quotedPrintable:any;
|
2016-09-27 23:50:52 +02:00
|
|
|
declare var punycode:any;
|
2016-09-20 22:34:31 +02:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class NativeLibraryWrapperService {
|
|
|
|
public utf8:any;
|
|
|
|
public quotedPrintable:any;
|
2016-09-27 23:50:52 +02:00
|
|
|
public punycode:any;
|
2016-09-20 22:34:31 +02:00
|
|
|
|
|
|
|
constructor() {
|
|
|
|
this.utf8 = utf8;
|
|
|
|
this.quotedPrintable = quotedPrintable;
|
2016-09-27 23:50:52 +02:00
|
|
|
this.punycode = punycode;
|
2016-09-20 22:34:31 +02:00
|
|
|
}
|
2016-09-27 23:50:52 +02:00
|
|
|
}
|