Skip to content

Commit 470b97f

Browse files
committed
Missing semicolon
Signed-off-by: Fabio José <[email protected]>
1 parent a66aafc commit 470b97f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/utils/fun.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const asBuffer = (value) =>
4141
? Buffer.from(value)
4242
: isBuffer(value)
4343
? value
44-
: (() => {throw {message: "is not buffer or a valid binary"}})();
44+
: (() => {throw {message: "is not buffer or a valid binary"};})();
4545

4646
const asBase64 = (value) =>
4747
asBuffer(value).toString("base64");

0 commit comments

Comments
 (0)