mirror of
https://github.com/node-ebics/node-ebics-client.git
synced 2025-08-15 04:05:35 +00:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
0049fffc00 | ||
|
2c9040904a |
@@ -63,11 +63,10 @@ module.exports = class BankLetter {
|
||||
|
||||
try {
|
||||
fs.writeFileSync(path, letter);
|
||||
console.log(`Data written to file on path '${path}'`);
|
||||
} catch (error) {
|
||||
console.error(`error while writing bank letter to path '${path}' with error ${error}`);
|
||||
throw error;
|
||||
}
|
||||
|
||||
return new Promise(resolve => resolve(true));
|
||||
}
|
||||
};
|
||||
|
@@ -58,9 +58,7 @@ module.exports = dir => ({
|
||||
|
||||
try {
|
||||
fs.writeFileSync(path, this.traceData);
|
||||
console.log("Data written to file");
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
throw error;
|
||||
}
|
||||
},
|
||||
|
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ebics-client",
|
||||
"version": "0.0.7",
|
||||
"version": "0.0.8",
|
||||
"description": "Node.js ISO 20022 Compliant EBICS Client",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
Reference in New Issue
Block a user