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");