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 2.1.12 to 2.1.13

2

dist/index.cjs.js

@@ -64,3 +64,3 @@ /**

var exp = Math.pow(10, precision);
var float = parseFloat(numbers) / exp;
var float = parseFloat(numbers) / exp || 0;
return float.toFixed(fixed(precision));

@@ -67,0 +67,0 @@ }

@@ -60,3 +60,3 @@ /**

var exp = Math.pow(10, precision);
var float = parseFloat(numbers) / exp;
var float = parseFloat(numbers) / exp || 0;
return float.toFixed(fixed(precision));

@@ -63,0 +63,0 @@ }

{
"name": "@coders-tm/vue-number-format",
"version": "2.1.12",
"version": "2.1.13",
"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