Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

byu-jwt

Package Overview
Dependencies
Maintainers
15
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

byu-jwt - npm Package Compare versions

Comparing version 3.0.4 to 3.0.5

0

index.js

@@ -0,0 +0,0 @@ /*

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

8

lib/index.js

@@ -316,4 +316,8 @@ /**

const cacheControl = headers['cache-control']
let [, maxAge] = cacheControl.match(/max-age=(\d+)/) // Get digits
maxAge = parseInt(maxAge, 10)
let maxAge
if (cacheControl) {
const match = cacheControl.match(/max-age=(\d+)/) // Get digits
maxAge = match[1]
maxAge = parseInt(maxAge, 10)
}
if (!maxAge) {

@@ -320,0 +324,0 @@ debug('defaulting max age to 3600')

@@ -0,0 +0,0 @@ /**

{
"name": "byu-jwt",
"version": "3.0.4",
"version": "3.0.5",
"description": "The byu-jwt module provides helpful functions to retrieve a specified BYU .well-known URL and verify BYU signed JWTs.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -0,0 +0,0 @@ # byu-jwt

@@ -0,0 +0,0 @@ /*

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc