aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/nodeWorker.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/nodeWorker.ts')
-rw-r--r--src/crypto/nodeWorker.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/crypto/nodeWorker.ts b/src/crypto/nodeWorker.ts
index afa2930a8..4352b66c2 100644
--- a/src/crypto/nodeWorker.ts
+++ b/src/crypto/nodeWorker.ts
@@ -14,6 +14,9 @@
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
+
+// tslint:disable:no-var-requires
+
const path = require("path");
const fork = require("child_process").fork;
@@ -49,7 +52,7 @@ export class Worker {
}
});
- this.child.send({scriptFilename,cwd: process.cwd()});
+ this.child.send({scriptFilename, cwd: process.cwd()});
}
addEventListener(event: "message" | "error", fn: (x: any) => void): void {