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

elysia-auth-drizzle

Package Overview
Dependencies
Maintainers
1
Versions
91
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

elysia-auth-drizzle - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

2

dist/index.js

@@ -653,3 +653,3 @@ 'use strict';

let token;
if (req.cookies && req.cookies["authorization"]) {
if (req.cookies && req.cookies["authorization"] && req.cookies["authorization"].value) {
if (cookieSecret) {

@@ -656,0 +656,0 @@ const result = await unsignCookie(

{
"name": "elysia-auth-drizzle",
"version": "1.0.2",
"version": "1.0.3",
"main": "./dist/index.js",

@@ -5,0 +5,0 @@ "typings": "dist/index.d.ts",

@@ -82,3 +82,7 @@ /* eslint-disable @typescript-eslint/ban-ts-comment */

if (req.cookies && req.cookies['authorization']) {
if (
req.cookies &&
req.cookies['authorization'] &&
req.cookies['authorization'].value
) {
if (cookieSecret) {

@@ -85,0 +89,0 @@ const result = await unsignCookie(

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