Package Exports
- @jaybee4real/unit-converter
- @jaybee4real/unit-converter/index.js
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 (@jaybee4real/unit-converter) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Installation
npm install @jaybee4real/unit-converter --saveUsage
The library converts units from the desired type to the specified type.
convert(
value, /* = actual value to convert */
from, /* = unit to convert to */
to, /* = unit to convert to */
shouldRound /* = if value should be rounded */
);import convert from "units-converter";
console.log(convert(1, "cm", "mm")); // 10
console.log(convert(1, "metres", "feet")); // 3.28084
// weight conversions
console.log(convertWeight(1, "kg", "pounds")); // 2.20462
console.log(convertWeight(1, "kg", "ounces")); // 35.274
console.log(convertWeight(1, "kg", "grams")); // 1000
console.log(convertWeight(1, "kg", "kilograms")); // 1
//
console.log(convertDistance(1, "km", "miles")); // 0.621371
console.log(convertDistance(1, "km", "yards")); // 1.09361
console.log(convertDistance(1, "km", "meters")); // 1000
console.log(convertDistance(1, "km", "kilometers")); // 1
// convert to and from feetInches (5' 3")
cconsole.log(convertDistance(100, "cm", "ftIn", "true")) // 3' 3"
console.log(convertDistance(`2' 12"`, "ftIn", "cm", true)) // 91
console.log(convertDistance(91, "cm", "ftIn", "true")) // 2' 12"