New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

simple-parse-number

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-parse-number

A simple clean way to parse numbers with Javascript

latest
Source
npmnpm
Version
0.1.1
Version published
Weekly downloads
2
-50%
Maintainers
1
Weekly downloads
 
Created
Source

A simple clean way to parse numbers with Javascript

Setup

npm install simple-parse-number

Usage

var parseNumber = require('simple-format-number');

parseNumber('1,000.342'); // => 1000.342
parseNumber('1.000,342', { decimal: ',', grouping: '.' }); // => 1000.342 (italian format)

API

parseNumber(string, options)

where:

  • number the number to format
  • options (compatible with the symbols option of simple-format-number)
    • decimal the decimal symbol (default .)
    • grouping the grouping symbol (default ,)

Keywords

parse

FAQs

Package last updated on 03 Jan 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts