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

bipro

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bipro - npm Package Compare versions

Comparing version 0.0.9 to 0.0.10

.nyc_output/32fe6a340c8fa9caccd8f40e54bd01bc.json

16

lib/plugins/default-types.js

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

let type = protocol._getType(schema.items.type);
schema.items = type.transformSchema(schema.items);
schema.items = type.transformSchema(schema.items, protocol);

@@ -337,3 +337,7 @@ return schema;

if(schema.size) {
size = schema.size;
if(typeof schema.size === 'string') {
size = data[schema.size];
} else {
size = schema.size;
}
} else {

@@ -366,3 +370,9 @@ let sizeType = protocol._getType(schema.sizeType);

if(schema.size) {
size = schema.size;
if(typeof schema.size === 'string') {
size = ctx.data[schema.size];
} else {
size = schema.size;
}
} else {

@@ -369,0 +379,0 @@ let sizeType = protocol._getType(schema.sizeType);

2

package.json

@@ -5,3 +5,3 @@ {

"author": "Christian Blaschke <mail@platdesign.de>",
"version": "0.0.9",
"version": "0.0.10",
"main": "./lib/bipro.js",

@@ -8,0 +8,0 @@ "dependencies": {

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