Weight
The weight category provides conversions between metric units (grams, kilograms, tonnes) and Imperial/US units (ounces, pounds, stones, tons).
Supported Units
Section titled “Supported Units”- Metric: milligram
mg, gramg, kilogramkg, tonnet - Imperial / US: ounce
oz, poundlb, stonest, tonUS ton
Quick Example
Section titled “Quick Example”import { Conversion } from "@devhaven/unit-conversion";
const convert = new Conversion();
convert.value(1000).from("gram").to("kilogram");convert.value(1).from("pound").to("kilogram");Common Conversions
Section titled “Common Conversions”Gram ↔ Kilogram
Section titled “Gram ↔ Kilogram”convert.value(1000).from("gram").to("kilogram");convert.value(1).from("kilogram").to("gram");Ounce ↔ Pound
Section titled “Ounce ↔ Pound”convert.value(16).from("ounce").to("pound");convert.value(1).from("pound").to("ounce");