1.0.1 • Published 4 years ago

numbers-allow-comma v1.0.1

Weekly downloads
1
License
ISC
Repository
-
Last release
4 years ago

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

ParameterRequiredTypeDescription
numberYesStringString that will be returned as a number, even if include a comma instead os a dot
functionToExecuteNoFunctionFunction 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