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

openapi-police

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

openapi-police - npm Package Compare versions

Comparing version 1.0.6 to 1.0.7

7

dist/parameter.js

@@ -195,3 +195,8 @@ "use strict";

if (type === 'boolean') {
out = (out === 'true' || out === '1');
if (out === 'true' || out === '1') {
out = true;
}
else if (out === 'false' || out === '0') {
out = false;
}
}

@@ -198,0 +203,0 @@ else if (type === 'number' || type === 'integer') {

2

package.json
{
"name": "openapi-police",
"version": "1.0.6",
"version": "1.0.7",
"description": "OpenAPI v3 validators and utilities",

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