Properly integrate standard JS tools for JS and TS code
[poolifier.git] / README.md
index af6b7cd66064561c11092fa939ee2eca51405a80..bfb47a78d79d7f25aa9fbe2d1bf56c0da868e98a 100644 (file)
--- a/README.md
+++ b/README.md
@@ -97,7 +97,7 @@ You can implement a worker-threads worker in a simple way by extending the class
 'use strict'
 const { ThreadWorker } = require('poolifier')
 
-function yourFunction (data) {
+function yourFunction(data) {
   // this will be executed in the worker thread,
   // the data will be received by using the execute method
   return { ok: 1 }