@ultraviolet/plus
Version:
Ultraviolet Plus
33 lines (32 loc) • 834 B
JavaScript
;
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const APPROXIMATE_HOURS_IN_MONTH = 730;
const multiplier = {
seconds: 1 / 60 / 60,
minutes: 1 / 60,
hours: 1,
days: 24,
months: APPROXIMATE_HOURS_IN_MONTH
};
const maximumFractionDigits = {
seconds: 10,
minutes: 8,
hours: 5,
days: 3,
months: 2
};
const maximumFractionDigitsLong = {
seconds: 12,
minutes: 10,
hours: 8,
days: 4,
months: 2
};
const MAX_CELL_WIDTH = "70%";
const PRICE_MAX_CELL_WIDTH = "30%";
exports.APPROXIMATE_HOURS_IN_MONTH = APPROXIMATE_HOURS_IN_MONTH;
exports.MAX_CELL_WIDTH = MAX_CELL_WIDTH;
exports.PRICE_MAX_CELL_WIDTH = PRICE_MAX_CELL_WIDTH;
exports.maximumFractionDigits = maximumFractionDigits;
exports.maximumFractionDigitsLong = maximumFractionDigitsLong;
exports.multiplier = multiplier;