🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@focus4/forms

Package Overview
Dependencies
Maintainers
1
Versions
332
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@focus4/forms - npm Package Compare versions

Comparing version
12.12.1
to
12.12.2
+2
-2
lib/focus4.forms.js

@@ -687,4 +687,4 @@ import { isFunction, takeWhile, upperFirst } from "es-toolkit";

const thousands = sample.find((s) => s.type === "group")?.value ?? "";
const invalidCharRegex = new RegExp(`[^\\d${thousands ? `\\${thousands}` : ""}${decimal ? `\\${decimal}` : ""}]`, "gu");
const digitDecimalRegex = new RegExp(`[\\d\\${decimal}-]`, "u");
const invalidCharRegex = new RegExp(`[^\\d${thousands}${decimal}]`, "gu");
const digitDecimalRegex = new RegExp(`[\\d${decimal}-]`, "u");
const [left, right, nope] = decimal ? v.split(decimal) : [

@@ -691,0 +691,0 @@ v,

{
"name": "@focus4/forms",
"version": "12.12.1",
"version": "12.12.2",
"description": "Focus v4, forms module",

@@ -19,3 +19,3 @@ "main": "lib/focus4.forms.js",

"@focus4/entities": "12.10.2",
"@focus4/stores": "12.12.1",
"@focus4/stores": "12.12.2",
"es-toolkit": "^1.47.0",

@@ -22,0 +22,0 @@ "intl-number-parser": "^1.0.6",

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