Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

multi-number-parse

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

multi-number-parse - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

.travis.yml

6

package.json
{
"name": "multi-number-parse",
"version": "1.0.0",
"version": "1.0.1",
"description": "Number parser that tries to guess the format",

@@ -10,4 +10,4 @@ "main": "./dist/index.js",

"lint": "eslint src test --fix",
"prepublish": "npm run lint && npm run build",
"test": "mocha --recursive --exit --require babel-register"
"prepublishOnly": "npm run build",
"test": "npm run lint && mocha --recursive --exit --require babel-register"
},

@@ -14,0 +14,0 @@ "keywords": [

# Multi-Number Parse _(multi-number-parse)_
Library for parsing numbers in any **valid** format.
[![npm package](https://nodei.co/npm/multi-number-parse.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/multi-number-parse/)
[![Build status](https://img.shields.io/travis/mjamado/multi-number-parse/master.svg?style=flat-square)](https://travis-ci.org/mjamado/multi-number-parse)
> Library for parsing numbers in any **valid** format.
This library was motivated by the need to support a wide range of number formats from users. Users
sometime paste prices, percentages and whatnot from spreadsheets or websites, and we couldn't
force them to always use either the international format ("12345.67") or the specific user locale.
## Install
```shell
npm install multi-number-parse --save-prod
```
## Usage
This library always returns a number, even if that number is `Number.NaN`. Usage is very simple:
```js
import parse from 'multi-number-parse';
parse('2,543.56'); // returns 2543.56
parse('10 654.1234'); // returns 10654.1234
parse('2.654$10'); // returns 2654.1
```
## Contribute
Found a bug? Feel free to open an issue or make a pull request. Always include tests, either for
the bug or for your changes.
## License
GNU Lesser General Public License v3.0 or later
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