All files / if-run/builtins/time-converter config.ts

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 415x                                                                                
export const TIME_UNITS_IN_SECONDS: Record<string, number> = {
  s: 1,
  second: 1,
  sec: 1,
  secs: 1,
  seconds: 1,
  min: 60,
  mins: 60,
  minute: 60,
  minutes: 60,
  h: 3600,
  hs: 3600,
  hr: 3600,
  hrs: 3600,
  hour: 3600,
  hours: 3600,
  d: 86400,
  ds: 86400,
  day: 86400,
  days: 86400,
  w: 604800,
  ws: 604800,
  wk: 604800,
  wks: 604800,
  week: 604800,
  weeks: 604800,
  m: 2628336,
  mnth: 2628336,
  mth: 2628336,
  mnths: 2628336,
  mths: 2628336,
  month: 2628336,
  months: 2628336,
  y: 31556952,
  ys: 31556952,
  yr: 31556952,
  yrs: 31556952,
  year: 31556952,
  years: 31556952,
};