New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

kequapp

Package Overview
Dependencies
Maintainers
1
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kequapp - npm Package Compare versions

Comparing version 0.5.5 to 0.5.6

10

dist/router/create-cookies.js

@@ -45,7 +45,9 @@ "use strict";

exports.default = createCookies;
function parseCookieHeader(cookie = '') {
function parseCookieHeader(cookie) {
const result = {};
for (const part of cookie.split('; ')) {
const [key, value] = part.split('=');
result[key] = decodeURIComponent(value !== null && value !== void 0 ? value : '');
if (cookie !== undefined) {
for (const part of cookie.split('; ')) {
const [key, value] = part.split('=');
result[key] = decodeURIComponent(value !== null && value !== void 0 ? value : '');
}
}

@@ -52,0 +54,0 @@ return result;

4

dist/router/create-regexp.d.ts

@@ -1,3 +0,3 @@

export declare const WILD = "[\\w\\./-]*";
export declare const PARA = "[0-9a-zA-Z_]\\w*";
export declare const PARA: string;
export declare const WILD: string;
export default function createRegexp(url: string, isWild?: boolean): RegExp;
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PARA = exports.WILD = void 0;
exports.WILD = exports.PARA = void 0;
const extract_1 = require("./util/extract");
exports.WILD = '[\\w\\./-]*';
exports.PARA = '[0-9a-zA-Z_]\\w*';
const VALID = '0-9a-zA-Z_\\-@+.~';
exports.PARA = `[${VALID}]*`;
exports.WILD = `[${VALID}/]*`;
function createRegexp(url, isWild = false) {

@@ -8,0 +9,0 @@ return new RegExp('^/' + convertUrl(url, isWild) + '$', 'i');

{
"name": "kequapp",
"version": "0.5.5",
"version": "0.5.6",
"description": "Non-intrusive Node JavaScript web app framework",

@@ -5,0 +5,0 @@ "main": "dist/main.js",

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