From: Jérôme Benoit Date: Sat, 16 Dec 2023 19:25:43 +0000 (+0100) Subject: refactor: refine worker factory arguments checking X-Git-Tag: v1.2.30~11 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=49e2c1e5803904e807a0574f398cc517c05fe408;p=e-mobility-charging-stations-simulator.git refactor: refine worker factory arguments checking Signed-off-by: Jérôme Benoit --- diff --git a/src/worker/WorkerAbstract.ts b/src/worker/WorkerAbstract.ts index 5e5e6fdb..cd4dedf9 100644 --- a/src/worker/WorkerAbstract.ts +++ b/src/worker/WorkerAbstract.ts @@ -22,10 +22,13 @@ export abstract class WorkerAbstract { */ constructor(workerScript: string, workerOptions: WorkerOptions) { if (workerScript == null) { - throw new Error('Worker script is not defined'); + throw new TypeError('Worker script is not defined'); } - if (typeof workerScript === 'string' && workerScript.trim().length === 0) { - throw new Error('Worker script is empty'); + if (typeof workerScript !== 'string') { + throw new TypeError('Worker script must be a string'); + } + if (workerScript.trim().length === 0) { + throw new Error('Worker script is an empty string'); } if (!existsSync(workerScript)) { throw new Error('Worker script file does not exist');