From 470b97fd29a5d9542a0c8a8be711e799ffd4ace0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabio=20Jos=C3=A9?= Date: Fri, 8 Nov 2019 10:08:48 -0300 Subject: [PATCH] Missing semicolon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabio José --- lib/utils/fun.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/fun.js b/lib/utils/fun.js index f3c2f7e..127e7f5 100644 --- a/lib/utils/fun.js +++ b/lib/utils/fun.js @@ -41,7 +41,7 @@ const asBuffer = (value) => ? Buffer.from(value) : isBuffer(value) ? value - : (() => {throw {message: "is not buffer or a valid binary"}})(); + : (() => {throw {message: "is not buffer or a valid binary"};})(); const asBase64 = (value) => asBuffer(value).toString("base64");