From eea03e6e75ec30d351a8988edb91127c577e4d36 Mon Sep 17 00:00:00 2001 From: Shinigami Date: Fri, 19 Feb 2021 17:13:16 +0100 Subject: [PATCH] Fix logo squashing (#203) Use 34% image size --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c7433b62..0b8b0307 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@
- +

Node Thread Pool :arrow_double_up: :on:

@@ -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 } -- 2.34.1