mirror of
https://github.com/node-ebics/node-ebics-client.git
synced 2024-11-21 21:52:07 +00:00
Fix serialize method
This commit is contained in:
parent
e2af5c6ea8
commit
1f857a7f85
@ -37,9 +37,11 @@ module.exports = class BankLetter {
|
||||
}) {
|
||||
this.client = client;
|
||||
this.bankName = bankName;
|
||||
this.template = template;
|
||||
}
|
||||
|
||||
if ()
|
||||
this.template = template;
|
||||
|
||||
}
|
||||
|
||||
async generate() {
|
||||
registerHelpers();
|
||||
@ -64,10 +66,11 @@ module.exports = class BankLetter {
|
||||
|
||||
try {
|
||||
fs.writeFileSync(path, letter);
|
||||
console.log("Data written to file");
|
||||
console.log('Data written to file');
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
throw error;
|
||||
}
|
||||
return new Promise(resolve => resolve(true));
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user