1.1.8 • Published 6 years ago

parse-price v1.1.8

Weekly downloads
519
License
MIT
Repository
github
Last release
6 years ago

parse-price

codecov

Returns a Number from a localized price string.

Installation

npm install --save parse-price

Usage

Receives a string (price) as input and returns a Number (or NaN) as output.

var parsePrice = require('parse-price')

parsePrice('€1.234,56') // => 1234.56
parsePrice('US$ 1.234,56') // => 1234.56
parsePrice('£1,234.56') // => 1234.56
parsePrice('R$1.234,56') // => 1234.56
parsePrice('1 234,56 руб') // => 1234.56
parsePrice('1,234.56 ₪') // => 1234.56

caiogondim.com  ·  GitHub @caiogondim  ·  Twitter @caio_gondim