1.1.8 • Published 7 years ago
parse-price v1.1.8
parse-price
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