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

mobx-input

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mobx-input - npm Package Compare versions

Comparing version 0.0.11 to 0.0.12

9

lib/mobx-input.js

@@ -122,2 +122,11 @@ "use strict";

return function (val) {
// Let's support ad-hoc validation of objects
if (val && typeof val === 'object') {
if (Object.keys(val).length) {
val = JSON.stringify(val);
}
else {
val = undefined;
}
}
var result = true;

@@ -124,0 +133,0 @@ rules.forEach(function (rule) {

2

package.json
{
"name": "mobx-input",
"version": "0.0.11",
"version": "0.0.12",
"description": "Form library for MobX, with observable state and validations",

@@ -5,0 +5,0 @@ "main": "lib/mobx-input.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