Class DateTime

A timezone and locale aware DateTime. This class assumes support for:

  • Intl.DateTimeFormat
  • Intl.RelativeTimeFormat

Constructors

  • Creates a DateTime from various input. A single argument may be date input or an options object. Two arguments represents input and an options object. If no arguments are passed the DateTime will be the current date.

    If the input is a string that specifies a timezone or offset it will be used as is. Otherwise if the timeZone option is specified or a global timezone is set it will be parsed in that timezone. If no timezone can be derived the system offset will be used instead.

    Parameters

    • ...args: any[]

    Returns DateTime

    new DateTime();
    new DateTime('2025-01-01');
    new DateTime(1735689600000);
    new DateTime({
    locale: 'en-US',
    timeZone: 'America/New_York'
    });
    new DateTime('Jan 1 2025', {
    locale: 'en-US',
    timeZone: 'America/New_York'
    });

Properties

date: Date
offset: any
options: any
utc: any
DATE_MED: { day: string; month: string; year: string } = DATE_MED
DATE_MED_WEEKDAY: { day: string; month: string; weekday: string; year: string } = DATE_MED_WEEKDAY
DATE_NARROW: { day: string; month: string; year: string } = DATE_NARROW
DATE_SHORT: { day: string; month: string; year: string } = DATE_SHORT
DATETIME_MED: {
    day: string;
    hour: string;
    minute: string;
    month: string;
    year: string;
} = DATETIME_MED
DATETIME_MED_WEEKDAY: {
    day: string;
    hour: string;
    minute: string;
    month: string;
    weekday: string;
    year: string;
} = DATETIME_MED_WEEKDAY
DATETIME_NARROW: {
    day: string;
    hour: string;
    minute: string;
    month: string;
    year: string;
} = DATETIME_NARROW
DATETIME_SHORT: {
    day: string;
    hour: string;
    minute: string;
    month: string;
    year: string;
} = DATETIME_SHORT
MONTH_YEAR: { month: string; year: string } = MONTH_YEAR
MONTH_YEAR_SHORT: { month: string; year: string } = MONTH_YEAR_SHORT
options: {} = {}
TIME_HOUR: { hour: string } = TIME_HOUR
TIME_MED: { hour: string; minute: string } = TIME_MED
TIME_SHORT: { hour: string; minute: string; shortDayPeriod: boolean } = TIME_SHORT
TIME_SHORT_HOUR: { hour: string; shortDayPeriod: boolean } = TIME_SHORT_HOUR
TIME_WITH_ZONE: { hour: string; minute: string; timeZoneName: string } = TIME_WITH_ZONE

Methods

  • Advances the DateTime. When the first argument is a number it must be followed by a unit advancing by that many units. If the first argument is an object it will advance the date by multiple units.

    Parameters

    • by: number | {}
    • Optionalunit: TimeUnit

    Returns any

    new DateTime().advance(6, 'months')
    new DateTime().advance({
    months: 6,
    days: 15
    })
  • Returns the number of days in the month.

    Returns number

  • Advances the DateTime to the end of the specified unit.

    Parameters

    • unit: "day" | "hour" | "minute" | "month" | "second" | "year" | "week"

    Returns any

  • Advances the DateTime to the end of the calendar month. This may push the date into the next month.

    Returns any

  • Advances the DateTime to the end of the day.

    Returns any

  • Advances the DateTime to the end of the month.

    Returns any

  • Advances the DateTime to the end of the week.

    Returns any

  • Advances the DateTime to the end of the year.

    Returns any

  • Formats the DateTime using various formats accessible as static members of the DateTime class.

    Parameters

    • format: any = DateTime.DATETIME_MED
    • options: any

    Returns any

  • Formats the date component of the DateTime using a standard representation. The local or global locale will be used when specified.

    Returns any

    January 1, 2025
    
  • Formats the hours component of the DateTime. The local or global locale will be used when specified.

    Returns any

    9am
    
  • Formats the month and year components of the DateTime. The local or global locale will be used when specified.

    Returns any

    January 2025
    
  • Formats the month and year components of the DateTime in a shortened format. The local or global locale will be used when specified.

    Returns any

    Jan 2025
    
  • Formats the time component of the DateTime using a standard representation. The local or global locale will be used when specified.

    Returns any

    9:00am
    
  • Gets the date of the DateTime.

    Returns number

  • Gets the day of week of the DateTime from 0 to 6.

    Returns number

  • Gets the year of the DateTime.

    Returns number

  • Gets the hours of the DateTime.

    Returns number

  • Gets the milliseconds of the DateTime.

    Returns number

  • Gets the minutes of the DateTime.

    Returns number

  • Gets the month of the DateTime. Note that months are zero based so January is 0.

    Returns number

  • Gets the seconds of the DateTime.

    Returns number

  • Returns the unix timestamp of the DateTime.

    Returns number

  • Alias for getTimeZone.

    Returns string

  • Returns the IANA timezone.

    Returns string

  • Gets the timezone offset of the DateTime in minutes. This may be the offset of the local or global timezone if one is set, otherwise will be the system offset.

    Returns number

  • Gets the date in UTC.

    Returns number

  • Gets the day in UTC.

    Returns number

  • Gets the year in UTC.

    Returns number

  • Gets the hours in UTC.

    Returns number

  • Gets the milliseconds in UTC.

    Returns number

  • Gets the minutes in UTC.

    Returns number

  • Gets the month in UTC.

    Returns number

  • Gets the seconds in UTC.

    Returns number

  • Alias for getFullYear.

    Returns number

  • Returns true if the DateTime is equivalent to the passed value..

    Parameters

    • arg: DateLike

    Returns boolean

  • Returns true if the DateTime is invalid.

    Returns boolean

  • Returns true if the DateTime is valid.

    Returns boolean

  • Formats the DateTime in a relative format. Allowed options are:

    • now - Offset to format relative to. Defaults to the current time.
    • min - When set will return undefined if the DateTime is before this date.
    • max - When set will return undefined if the DateTime is after this date.
    • numeric - Passed to Intl.RelativeTimeFormat. Defaults to auto but may also be always.

    Parameters

    • Optionaloptions: { max?: DateLike; min?: DateLike; now?: DateLike; numeric?: string }

    Returns string

  • Resets the time to 00:00:00.000. Equivalent to startOfDay.

    Returns DateTime

  • Rewinds the DateTime. When the first argument is a number it must be followed by a unit rewinding by that many units. If the first argument is an object it will rewind the date by multiple units.

    Parameters

    • by: number | {}
    • Optionalunit: TimeUnit

    Returns any

    new DateTime().rewind(6, 'months')
    new DateTime().rewind({
    months: 6,
    days: 15
    })
  • Sets components of the DateTime by name.

    Parameters

    • components: {
          day?: number;
          hour?: number;
          hours?: number;
          millisecond?: number;
          milliseconds?: number;
          minute?: number;
          minutes?: number;
          month?: number;
          second?: number;
          seconds?: number;
          year?: number;
      }
      • Optionalday?: number

        The day of the month to set.

      • Optionalhour?: number

        The hours to set.

      • Optionalhours?: number

        The hours to set.

      • Optionalmillisecond?: number

        The milliseconds to set.

      • Optionalmilliseconds?: number

        The milliseconds to set.

      • Optionalminute?: number

        The minutes to set.

      • Optionalminutes?: number

        The minutes to set.

      • Optionalmonth?: number

        The month to set.

      • Optionalsecond?: number

        The seconds to set.

      • Optionalseconds?: number

        The seconds to set.

      • Optionalyear?: number

        The year to set.

    Returns any

  • Sets the arguments for the UTC time.

    Parameters

    • ...args: number[]

      A list of arguments representing the date components.

    Returns DateTime

  • Sets the date of the DateTime.

    Parameters

    • date: any

    Returns DateTime

  • Sets the year of the DateTime.

    Parameters

    • year: any

    Returns DateTime

  • Sets the hours of the DateTime.

    Parameters

    • hours: any

    Returns DateTime

  • Sets the milliseconds of the DateTime.

    Parameters

    • milliseconds: any

    Returns DateTime

  • Sets the minutes of the DateTime.

    Parameters

    • minutes: any

    Returns DateTime

  • Sets the month of the DateTime. Note that months are zero based so January is 0.

    Parameters

    • month: any

    Returns DateTime

  • Sets the seconds of the DateTime.

    Parameters

    • seconds: any

    Returns DateTime

  • Sets the unix timestamp of the DateTime.

    Parameters

    • time: number

    Returns DateTime

  • Sets date of the DateTime in UTC.

    Parameters

    • utcDate: any

    Returns DateTime

  • Sets full year of the DateTime in UTC.

    Parameters

    • year: any

    Returns DateTime

  • Sets hours of the DateTime in UTC.

    Parameters

    • hours: any

    Returns DateTime

  • Sets milliseconds of the DateTime in UTC.

    Parameters

    • milliseconds: any

    Returns DateTime

  • Sets minutes of the DateTime in UTC.

    Parameters

    • minutes: any

    Returns DateTime

  • Sets month of the DateTime in UTC.

    Parameters

    • month: any

    Returns DateTime

  • Sets seconds of the DateTime in UTC.

    Parameters

    • seconds: any

    Returns DateTime

  • Alias for setFullYear.

    Parameters

    • year: any

    Returns DateTime

  • Sets the internal timezone of the DateTime.

    Parameters

    • timeZone: string

    Returns DateTime

  • Rewinds the DateTime to the start of the specified unit.

    Parameters

    • unit: "day" | "hour" | "minute" | "month" | "second" | "year" | "week"

    Returns any

  • Rewinds the DateTime to the start of the calendar month. This may push the date into the previous month.

    Returns any

  • Rewinds the DateTime to the start of the day.

    Returns any

  • Rewinds the DateTime to the start of the month.

    Returns any

  • Rewinds the DateTime to the start of the week.

    Returns any

  • Rewinds the DateTime to the start of the year.

    Returns any

  • Returns the date component of the DateTime. The result will be in the specified timezone, either that passed or set globally.

    Returns string

    2025-01-01
    
  • Returns the ISO-8601 representation of the date component of the DateTime in UTC.

    Returns string

    2025-01-01
    
  • Returns the ISO-8601 representation of the DateTime.

    Returns string

  • Returns the ISO-8601 representation of the time component of the DateTime in UTC.

    Returns string

    12:30:00.000
    
  • Equivalent to toISOString.

    Returns string

  • Returns a default formatted string that represents the DateTime.

    Returns any

  • Returns the time component of the DateTime. The result will be in the specified timezone, either that passed or set globally.

    Returns string

    12:30:00.000
    
  • Returns the numeric value of the DateTime instance.

    Returns number

  • Clamps the value passed to the minimum and maximum.

    Parameters

    • arg: DateLike
    • min: DateLike
    • max: DateLike

    Returns DateTime

    DateTime

  • Gets the meridiem tokens (am/pm) a given locale. Options are:

    • locale - If not passed will use the global locale or fall back to the system locale.
    • lower - Return the tokens in lower case.
    • style - When "short" will return a/p for am/pm tokens only.

    Parameters

    • options: { locale?: string; lower?: number; style?: "long" | "short" } = {}

    Returns string[]

  • Gets the months of the year for a given locale. Options are:

    • locale - If not passed will use the global locale or fall back to the system locale.
    • style - Will be passed as month to Intl.DateTimeFormat. Default long.

    Parameters

    • options: { locale?: string; style?: "long" | "short" | "narrow" } = {}

    Returns string[]

  • Gets the weekday names for a given locale. Options are:

    • locale - If not passed will use the global locale or fall back to the system locale.
    • start - An explicit start day of the week, 0 for sunday, 6 for Saturday. Will fall back to the locale defined first day.
    • style - Will be passed as weekday to Intl.DateTimeFormat. Default long.

    Parameters

    • options: { locale?: string; start?: number; style?: "long" | "short" | "narrow" } = {}

    Returns string[]

  • Returns the maximum value passed in as a DateTime.

    Parameters

    • ...args: DateLike[]

    Returns DateTime

    DateTime

  • Returns the minimum value passed in as a DateTime.

    Parameters

    • ...args: DateLike[]

    Returns DateTime

    DateTime

  • Sets the global locale.

    Parameters

    • locale: string

    Returns void

  • Sets global options.

    Parameters

    • options: any

    Returns void

  • Sets the global timezone.

    Parameters

    • timeZone: string

    Returns void