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

avsc

Package Overview
Dependencies
Maintainers
1
Versions
158
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

avsc - npm Package Compare versions

Comparing version 3.1.1 to 3.1.2

7

lib/schemas.js

@@ -1723,3 +1723,8 @@ /* jshint node: true */

field = this._fields[i];
value = field._type._copy(val[field._name], opts);
value = val[field._name];
if (value === undefined && field.hasOwnProperty('getDefault')) {
value = field.getDefault();
} else {
value = field._type._copy(val[field._name], opts);
}
if (hook) {

@@ -1726,0 +1731,0 @@ value = hook(field, value, this);

2

package.json
{
"name": "avsc",
"version": "3.1.1",
"version": "3.1.2",
"description": "Blazing fast serialization",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/mtth/avsc",

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