Socket
Socket
Sign inDemoInstall

@altiore/form

Package Overview
Dependencies
7
Maintainers
1
Versions
180
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.3.17 to 0.3.18

6

dist/@common/hooks/use-validate-input.js

@@ -14,5 +14,5 @@ import { useCallback, useEffect, useState } from 'react';

validators.forEach(function (validate) {
var error = validate.validate(value_1).error;
if (error) {
errors_1.push(error.message);
var result = validate.validate(value_1);
if (result === null || result === void 0 ? void 0 : result.error) {
errors_1.push(result.error.message);
}

@@ -19,0 +19,0 @@ });

{
"name": "@altiore/form",
"version": "0.3.17",
"version": "0.3.18",
"description": "Form helper for building powerful forms",

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

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc