New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@coders-tm/vue-number-format

Package Overview
Dependencies
Maintainers
1
Versions
115
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@coders-tm/vue-number-format - npm Package Compare versions

Comparing version 3.3.3 to 3.4.0

2

dist/index.cjs.js

@@ -385,3 +385,3 @@ /**

let newValue = target.value.replace(regExp, '');
const canNegativeInput = config.min && config.min < 0;
const canNegativeInput = !config.min || config.min < 0;
if (

@@ -388,0 +388,0 @@ ([110, 190].includes(e.keyCode) || e.key === config.decimal) &&

@@ -381,3 +381,3 @@ /**

let newValue = target.value.replace(regExp, '');
const canNegativeInput = config.min && config.min < 0;
const canNegativeInput = !config.min || config.min < 0;
if (

@@ -384,0 +384,0 @@ ([110, 190].includes(e.keyCode) || e.key === config.decimal) &&

@@ -382,3 +382,3 @@ /**

let newValue = target.value.replace(regExp, '');
const canNegativeInput = config.min && config.min < 0;
const canNegativeInput = !config.min || config.min < 0;
if (

@@ -385,0 +385,0 @@ ([110, 190].includes(e.keyCode) || e.key === config.decimal) &&

{
"name": "@coders-tm/vue-number-format",
"version": "3.3.3",
"version": "3.4.0",
"private": false,

@@ -5,0 +5,0 @@ "description": "Easy formatted numbers, currency and percentage with input/directive mask for Vue.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