UNPKG

@ultraviolet/plus

Version:
33 lines (32 loc) 588 B
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%"; export { APPROXIMATE_HOURS_IN_MONTH, MAX_CELL_WIDTH, PRICE_MAX_CELL_WIDTH, maximumFractionDigits, maximumFractionDigitsLong, multiplier };