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 {
|
2017-03-14 17:35:36 +01:00
|
|
|
// public utf8:any;
|
|
|
|
// public quotedPrintable:any;
|
|
|
|
// public punycode:any;
|
2016-09-20 22:34:31 +02:00
|
|
|
|
|
|
|
constructor() {
|
2017-03-14 17:35:36 +01:00
|
|
|
// this.utf8 = utf8;
|
|
|
|
// this.quotedPrintable = quotedPrintable;
|
|
|
|
// this.punycode = punycode;
|
2016-09-20 22:34:31 +02:00
|
|
|
}
|
2016-09-27 23:50:52 +02:00
|
|
|
}
|