Skip to content

Commit 54d5e3b

Browse files
committed
Fix linting issues
1 parent d9355ae commit 54d5e3b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/cryptography/drivers/node/AsymmetricJWTSigner.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ export class AsymmetricJWTSigner extends JWTSigner {
3030
new Buffer(`${encodedHeader}.${encodedClaim}`)
3131
)
3232

33-
return `${encodedHeader}.${encodedClaim}.${fromBase64(signature.toString("base64"))}`
33+
return `${encodedHeader}.${encodedClaim}.${fromBase64(
34+
signature.toString("base64")
35+
)}`
3436
}
3537

3638
public async verify(token: string): Promise<unknown> {

0 commit comments

Comments
 (0)