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

connect-rest

Package Overview
Dependencies
Maintainers
1
Versions
190
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

connect-rest - npm Package Compare versions

Comparing version 3.0.8 to 3.0.10

test/URL.js

7

lib/Rest.js

@@ -83,4 +83,7 @@ let url = require('url')

if (!req.query)
req.query = url.parse( req.url, true ).query || {}
if (!req.query) {
let q = url.parse( req.url, true )
for ( let key of Object.keys(q) )
req[ key ] = q[ key ]
}

@@ -87,0 +90,0 @@ let pathname = url.parse( req.url ).pathname

{
"name": "connect-rest",
"version": "3.0.8",
"version": "3.0.10",
"description": "Exceptionally featureful RESTful web services middleware for Connect.",

@@ -43,3 +43,3 @@ "keywords": [

"gulp": "^3.9.1",
"gulp-eslint": "^4.0.1",
"gulp-eslint": "^4.0.2",
"gulp-load-plugins": "^1.5.0",

@@ -46,0 +46,0 @@ "gulp-mocha": "^5.0.0",

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