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

react-bsonschema-form

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-bsonschema-form - npm Package Compare versions

Comparing version 0.41.11 to 0.41.12

8

lib/utils.js

@@ -304,4 +304,4 @@ "use strict";

function isMeteorEJSONType(v) {
return v && typeof v.typeName === 'function';
function shouldSkip(v) {
return v && (typeof v.typeName === 'function' || v instanceof Date);
}

@@ -313,6 +313,6 @@

// NOTE: do not merge bson object types
if (isMeteorEJSONType(obj1)) {
if (shouldSkip(obj1)) {
return obj1;
}
if (isMeteorEJSONType(obj2)) {
if (shouldSkip(obj2)) {
return obj2;

@@ -319,0 +319,0 @@ }

{
"name": "react-bsonschema-form",
"version": "0.41.11",
"version": "0.41.12",
"description": "A simple React component capable of building HTML forms out of a JSON schema.",

@@ -5,0 +5,0 @@ "scripts": {

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