Fix logo squashing (#203)
authorShinigami <chrissi92@hotmail.de>
Fri, 19 Feb 2021 16:13:16 +0000 (17:13 +0100)
committerGitHub <noreply@github.com>
Fri, 19 Feb 2021 16:13:16 +0000 (17:13 +0100)
Use 34% image size

README.md

index c7433b62ac2937c97be393455e2c329821328b56..0b8b03073db2bf1ea03d74d1b2810a101ab3848e 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
 <div align="center">
-<img src="./docs/logo.png" width="475" height="400"/>
+<img src="./docs/logo.png" width="340px" height="266px"/>
 </div>
 
 <h2 align="center">Node Thread Pool :arrow_double_up: :on:</h2>
@@ -94,7 +94,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 }