Class: DateFormatter

(package) utils/info-utils~DateFormatter(ms)

A utility class for handling date and time formatting.

This class allows converting timestamps (in milliseconds or microseconds) into various formats, including ISO strings, human-readable strings, and locale-specific formats.

Constructor

(package) new DateFormatter(ms)

Constructs a DateFormatter instance with a given timestamp in milliseconds.

Parameters:
Name Type Description
ms number

The timestamp in milliseconds since the UNIX epoch.

Since:
  • 2.0.0
Source:
Throws:

If given ms is not a valid number.

Type
InvalidTypeError

Methods

micros() → {number}

An alias method for DateFormatter#toMicroseconds method.

Since:
  • 2.0.0
Source:
Returns:
Type
number

millis() → {number}

An alias method for DateFormatter#toMilliseconds method.

Since:
  • 2.0.0
Source:
Returns:
Type
number

toDateObject() → {Date}

Get the Date object from this instance.

Since:
  • 2.0.0
Source:
Returns:
Type
Date

toISO() → {string}

An alias method for DateFormatter#toISOString method.

Since:
  • 2.0.0
Source:
Returns:
Type
string

toISOString() → {string}

Get the ISO-8601 formatted date string.

Since:
  • 2.0.0
Source:
Returns:
Type
string

toLocaleString(localeopt, optionsopt) → {string}

Get the date formatted to a specified locale.

Parameters:
Name Type Attributes Description
locale string <optional>

The locale string. Will default to system locale if not provided.

options Object <optional>

Formatting options for date time format.

Since:
  • 2.0.0
Source:
Returns:
Type
string

toMicroseconds() → {number}

Get the timestamp in microseconds.

Since:
  • 2.0.0
Source:
Returns:
Type
number

toMilliseconds() → {number}

Get the timestamp in milliseconds.

Since:
  • 2.0.0
Source:
Returns:
Type
number

toString() → {string}

Get the human-readable date string.

Since:
  • 2.0.0
Source:
Returns:
Type
string

(static) fromMicroseconds(microsecs) → {DateFormatter}

Parse a timestamp in microseconds and return a DateFormatter instance.

Parameters:
Name Type Description
microsecs number

Timestamp in microseconds.

Since:
  • 2.0.0
Source:
Throws:

If the given timestamp is not a number.

Type
InvalidTypeError
Returns:
Type
DateFormatter