measure-convert
Version:
JS/TS package for managing units of measurement. Convert, add, subtract, multiply, divide, and compare units of measurement.
13 lines (12 loc) • 526 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnitDispersion = void 0;
// src/units/UnitDispersion.ts
const Unit_1 = require("./Unit");
class UnitDispersion extends Unit_1.Unit {
constructor(name, symbol, description, baseUnitConversionFactor) {
super(name, symbol, description, baseUnitConversionFactor);
}
}
exports.UnitDispersion = UnitDispersion;
UnitDispersion.partsPerMillion = new UnitDispersion("Parts Per Million", "ppm", "Unit of measure for dispersion", 1.0);