Apply dependencies update (#485)
[poolifier.git] / src / worker / abstract-worker.ts
index 9b76893b151beac1fb39cf239af7acd01c778a64..520be7cd0041ee29604a8f79ddf046b78677e702 100644 (file)
@@ -146,7 +146,7 @@ export abstract class AbstractWorker<
    * @returns Message of the error.
    */
   protected handleError (e: Error | string): string {
-    return e as unknown as string
+    return (e as unknown) as string
   }
 
   /**