Socket
Socket
Sign inDemoInstall

formatic

Package Overview
Dependencies
9
Maintainers
10
Versions
223
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.8 to 1.1.9

7

build/lib/components/fields/array.js

@@ -46,2 +46,9 @@ // # array component

var items = this.props.field.value;
if (!Array.isArray(items)) {
if (items !== null && items !== undefined) {
items = [items];
} else {
items = [];
}
}

@@ -48,0 +55,0 @@ items.forEach(function (item, i) {

2

package.json
{
"name": "formatic",
"version": "1.1.8",
"version": "1.1.9",
"description": "Automatic, pluggable form generation",

@@ -5,0 +5,0 @@ "main": "./build/lib/index.js",

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc