Package Exports
- imperial-metric
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 (imperial-metric) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ImperialMetric 
A module that let you convert imperial to metric and metric to imperial easily
Usage
var IM = require("imperial-metric");
IM(1).from('inch').to("cm"); // 2.54
IM(1).from('m').to("inch"); // 39.37007874
IM(1).from('cm').to("foot"); // 0.03280839895
IM(1).from('foot').to("m"); // 0.3048includes inch, foot, mm, cm, m, km, sqrt-m, sqrt-cm, sqrt-mm, sqrt-km, sqrt-inch, sqrt-foot
Install
npm install imperial-metric