We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 495654a commit df06366Copy full SHA for df06366
src/JwtHandler.ts
@@ -82,7 +82,8 @@ export class JwtHandler {
82
* @param {Object} options Validation options (jsonwebtoken module options)
83
* @return {Promise<Object, JsonWebTokenError>} Promise to the JWT body
84
*/
85
- public async verify<T extends string | { [key: string]: any }>(jwtRaw: string, options?: jwt.VerifyOptions): Promise<T> {
+ public async verify<T extends string | { [key: string]: any }>(jwtRaw: string,
86
+ options?: jwt.VerifyOptions): Promise<T> {
87
if (!jwtRaw) {
88
throw new jwt.JsonWebTokenError("Empty JWT")
89
}
0 commit comments