This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (smartcar-unit) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Unit Conversion Library
Convert between distance, pressure, temperature, volume and mass units easily!
Installation
$ npm install smartcar-unit
Example Usage
var unit =require('smartcar-unit');var miles =unit(184000,'miles');var kilometers = miles.as('kilometers');// 296119.296var kilometersRounded = miles.as('kilometers',2);// 296119.3