Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

numbers-allow-comma

migw034ISC1.0.1

Node module that allow the user to use a nmber with comma.

Numbers, Comma

readme

numbers-allow-comma

Node.js module for comma replacement in numbers

Installation

In the command line, type one of the following commands

yarn add numbers-allow-comma

or

npm install numbers-allow-comma --save

Usage

fixNumber(number, functionToExecute);

Parameters

Parameter Required Type Description
number Yes String String that will be returned as a number, even if include a comma instead os a dot
functionToExecute No Function Function passed as a parameter if the user wants to automaticly execute a function with the new value

Example

const { fixNumber } = require("numbers-allow-comma");

let string = "3,25";

let num = fixNumber(string); // Will return 3.25
num.typeof(); // Will return number
With a function
const { fixNumber } = require("numbers-allow-comma");

let string = "3,25";

function double(number) {
    console.log(number * 2);
}

let num = fixNumber(string, double); //Will execute the function double() with the new value, and will also return 3.25 to the variable num