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

@sveltejs/kit

Package Overview
Dependencies
Maintainers
0
Versions
815
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sveltejs/kit - npm Package Compare versions

Comparing version 2.8.1 to 2.8.2

2

package.json
{
"name": "@sveltejs/kit",
"version": "2.8.1",
"version": "2.8.2",
"description": "SvelteKit is the fastest way to build Svelte apps",

@@ -5,0 +5,0 @@ "keywords": [

@@ -70,4 +70,3 @@ import { parse, serialize } from 'cookie';

const decoder = opts?.decode || decodeURIComponent;
const req_cookies = parse(header, { decode: decoder });
const req_cookies = parse(header, { decode: opts?.decode });
const cookie = req_cookies[name]; // the decoded string or undefined

@@ -99,4 +98,3 @@

getAll(opts) {
const decoder = opts?.decode || decodeURIComponent;
const cookies = parse(header, { decode: decoder });
const cookies = parse(header, { decode: opts?.decode });

@@ -103,0 +101,0 @@ for (const c of Object.values(new_cookies)) {

// generated during release, do not modify
/** @type {string} */
export const VERSION = '2.8.1';
export const VERSION = '2.8.2';

Sorry, the diff of this file is too big to display

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