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

@scvo/router

Package Overview
Dependencies
Maintainers
2
Versions
118
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@scvo/router - npm Package Compare versions

Comparing version 1.1.20 to 1.1.21

2

build/router.js

@@ -175,3 +175,3 @@ "use strict";

var value = query[param];
if (!query.hasOwnProperty(newParam)) {
if (typeof query[newParam] === 'undefined' || query[newParam] === null) {
query[newParam] = [value];

@@ -178,0 +178,0 @@ }

{
"name": "@scvo/router",
"version": "1.1.20",
"version": "1.1.21",
"description": "A moderately oppinionated web application framework based around mapping routes to tasks and then rendering with handlebars",

@@ -5,0 +5,0 @@ "main": "./build/index",

@@ -161,3 +161,3 @@ // System imports

var value = query[param];
if (!query.hasOwnProperty(newParam)) {
if (typeof query[newParam] === 'undefined' || query[newParam] === null) {
query[newParam] = [value];

@@ -164,0 +164,0 @@ } else if (!Array.isArray(query[newParam])) {

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