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

react-form-with-constraints

Package Overview
Dependencies
Maintainers
1
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-form-with-constraints - npm Package Compare versions

Comparing version 0.16.1-beta.1 to 0.16.1

6

CHANGELOG.md

@@ -0,1 +1,7 @@

## v0.16.1 (2021/05/0)
### Fixes
- Fix jscodeshift: remove console.assert() from bundle
## v0.16.0 (2020/10/22)

@@ -2,0 +8,0 @@

6

dist/react-form-with-constraints.development.js

@@ -106,6 +106,8 @@ (function (global, factory) {

function assert(condition, message) {
if (message === undefined)
if (message === undefined) {
console.assert(condition);
else
}
else {
console.assert(condition, message);
}
}

@@ -112,0 +114,0 @@

@@ -5,8 +5,6 @@ "use strict";

function assert(condition, message) {
if (message === undefined)
console.assert(condition);
else
console.assert(condition, message);
if (message === undefined) {}
else {}
}
exports.assert = assert;
//# sourceMappingURL=assert.js.map
export function assert(condition, message) {
if (message === undefined)
console.assert(condition);
else
console.assert(condition, message);
if (message === undefined) {}
else {}
}
//# sourceMappingURL=assert.js.map
{
"name": "react-form-with-constraints",
"version": "0.16.1-beta.1",
"version": "0.16.1",
"repository": {

@@ -71,3 +71,3 @@ "type": "git",

},
"gitHead": "f707a459dd7ab873e4844f194ce83a4267129765"
"gitHead": "1163a844f53941ed84296cb1a70c85f96df6fdfb"
}

@@ -383,6 +383,3 @@ # react-form-with-constraints

],
plugins: [
'@babel/plugin-proposal-class-properties',
'@babel/plugin-proposal-object-rest-spread'
]
plugins: []
};

@@ -389,0 +386,0 @@ ```

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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