Socket
Socket
Sign inDemoInstall

find-my-way

Package Overview
Dependencies
Maintainers
2
Versions
112
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

find-my-way - npm Package Compare versions

Comparing version 1.11.0 to 1.11.1

4

index.js

@@ -293,3 +293,3 @@ 'use strict'

var handle = currentNode.handlers[method]
if (handle !== null) {
if (handle !== null && handle !== undefined) {
var paramsObj = {}

@@ -459,3 +459,3 @@ if (handle.paramsLength > 0) {

var handle = node.handlers[method]
if (handle !== null) {
if (handle !== null && handle !== undefined) {
return {

@@ -462,0 +462,0 @@ handler: handle.handler,

{
"name": "find-my-way",
"version": "1.11.0",
"version": "1.11.1",
"description": "Crazy fast http radix based router",

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

@@ -679,3 +679,3 @@ 'use strict'

findMyWay.lookup({ method: 'PROPFIND', url: '/' }, null)
findMyWay.lookup({ method: 'TROLL', url: '/' }, null)
})

@@ -695,3 +695,3 @@

findMyWay.lookup({ method: 'PROPFIND', url: '/hello/world' }, null)
findMyWay.lookup({ method: 'TROLL', url: '/hello/world' }, null)
})

@@ -705,3 +705,3 @@

t.deepEqual(findMyWay.find('PROPFIND', '/'), null)
t.deepEqual(findMyWay.find('TROLL', '/'), null)
})

@@ -715,3 +715,3 @@

t.deepEqual(findMyWay.find('PROPFIND', '/hello/world'), null)
t.deepEqual(findMyWay.find('TROLL', '/hello/world'), null)
})

@@ -718,0 +718,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