Remove async await for Compiler.compile

This commit is contained in:
Dolan
2018-11-12 13:17:53 +00:00
parent 28fc328cb3
commit 765a9686d8
3 changed files with 6 additions and 6 deletions

View File

@ -33,7 +33,7 @@ export class Compiler {
this.formatter = new Formatter();
}
public async compile(file: File): Promise<JSZip> {
public compile(file: File): JSZip {
const zip = new JSZip();
const xmlifiedFileMapping = this.xmlifyFile(file);