Skip to content

Commit df06366

Browse files
committed
Fix tslint error line-max-length
1 parent 495654a commit df06366

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/JwtHandler.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ export class JwtHandler {
8282
* @param {Object} options Validation options (jsonwebtoken module options)
8383
* @return {Promise<Object, JsonWebTokenError>} Promise to the JWT body
8484
*/
85-
public async verify<T extends string | { [key: string]: any }>(jwtRaw: string, options?: jwt.VerifyOptions): Promise<T> {
85+
public async verify<T extends string | { [key: string]: any }>(jwtRaw: string,
86+
options?: jwt.VerifyOptions): Promise<T> {
8687
if (!jwtRaw) {
8788
throw new jwt.JsonWebTokenError("Empty JWT")
8889
}

0 commit comments

Comments
 (0)