js-quantities-all

1.0.1 • Public • Published

Expand a string with quantities

Say you have the following string: "5GB", you can expand it to its numeric representation using this module.

It's actually very simple to use...

 
var parse_quantity = require('parse-quantities');
 
 
var measure = '5GB';
var qty = parse_quantity(measure);
 
console.log(qty);
 

Output:


{
    "scalar": 5,
    "baseScalar": 5000000000,
    "signature": 25600000000,
    "_conversionCache": {},
    "numerator: [ "<gigabyte>" ],
    denominator": [ "<1>" ],
    "initValue": "5GB",
    "_isBase": false,
    "_units": "GB"
}

Package Sidebar

Install

npm i js-quantities-all

Weekly Downloads

0

Version

1.0.1

License

MIT

Unpacked Size

67.8 kB

Total Files

6

Last publish

Collaborators

  • nguru