parse-price

returns a Number from a localized price string

Usage no npm install needed!

<script type="module">
  import parsePrice from 'https://cdn.skypack.dev/parse-price';
</script>

README

parse-price

Travis CI codecov dependencies status lib size

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