@nexusui/components
Version:
These are custom components specially-developed for NexusUI applications. They will make your life easier by giving you out-of-the-box implementations for various high-level UI elements that you can drop directly into your application.
2 lines (1 loc) • 1.09 kB
JavaScript
const e={base:"m³","m³":{toBase:e=>e,fromBase:e=>e,fullName:"Cubic meter"},"km³":{toBase:e=>1e12*e,fromBase:e=>e/1e12,fullName:"Cubic kilometer"},"cm³":{toBase:e=>e/1e6,fromBase:e=>1e6*e,fullName:"Cubic centimeter"},"mm³":{toBase:e=>e/1e9,fromBase:e=>1e9*e,fullName:"Cubic millimeter"},"in³":{toBase:e=>16387064e-12*e,fromBase:e=>e/16387064e-12,fullName:"Cubic inch"},"ft³":{toBase:e=>.028316846592*e,fromBase:e=>e/.028316846592,fullName:"Cubic foot"},"yd³":{toBase:e=>.764554857984*e,fromBase:e=>e/.764554857984,fullName:"Cubic yard"},"mi³":{toBase:e=>41681818254e5*e,fromBase:e=>e/41681818254e5,fullName:"Cubic mile"},l:{toBase:e=>e/1e3,fromBase:e=>1e3*e,fullName:"Liter"},ml:{toBase:e=>e/1e6,fromBase:e=>1e6*e,fullName:"Milliliter"},"fl oz":{toBase:e=>295735295625e-16*e,fromBase:e=>e/295735295625e-16,fullName:"Fluid ounce"},pt:{toBase:e=>.000473176473*e,fromBase:e=>e/.000473176473,fullName:"Pint"},qt:{toBase:e=>.000946352946*e,fromBase:e=>e/.000946352946,fullName:"Quart"},gal:{toBase:e=>.003785411784*e,fromBase:e=>e/.003785411784,fullName:"Gallon"}};export{e as volume};