measurement
Version:
A flexible library for handling unit conversions
18 lines (15 loc) • 369 B
JavaScript
/**
* Represents a type of base physical property that a unit can refer to
* @enum {string}
*/
var UnitTypes = {
MASS: 'MASS',
LENGTH: 'LENGTH',
VOLUME: 'VOLUME',
MEMORY: 'MEMORY',
TIME: 'TIME',
// Compound units represent any generic combination of the above
COMPOUND: 'COMPOUND',
VOID: undefined
};
module.exports = UnitTypes;