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

url-router

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

url-router - npm Package Compare versions

Comparing version 10.0.0 to 10.0.1

4

dist/URLRouter.js

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

if (child && child.handler) {
if (child && child.handler !== undefined) {
return {

@@ -106,3 +106,3 @@ handler: child.handler,

if (match) {
if (match[0].length === remain.length && child.handler) {
if (match[0].length === remain.length && child.handler !== undefined) {
if (child.param) {

@@ -109,0 +109,0 @@ params[child.param] = match[0];

{
"name": "url-router",
"version": "10.0.0",
"version": "10.0.1",
"description": "A Trie-based router",

@@ -5,0 +5,0 @@ "main": "dist/URLRouter",

Sorry, the diff of this file is not supported yet

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