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

@springworks/input-validator

Package Overview
Dependencies
Maintainers
1
Versions
449
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@springworks/input-validator - npm Package Compare versions

Comparing version 3.0.2 to 3.0.3

4

index.js

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

allowed.forEach(function(param) {
if (params.hasOwnProperty(param)) {
if (Object.prototype.hasOwnProperty.call(params, param)) {
filtered[param] = params[param];

@@ -93,3 +93,3 @@ }

param = required[i];
if (!params.hasOwnProperty(param)) {
if (!Object.prototype.hasOwnProperty.call(params, param)) {
missing.push(param);

@@ -96,0 +96,0 @@ }

{
"name": "@springworks/input-validator",
"version": "3.0.2",
"version": "3.0.3",
"description": "Module to help validate and filter input parameters.",

@@ -5,0 +5,0 @@ "main": "index.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