DateTime
Built-in library for date & time
Example usage
Section titled “Example usage”local DateTime = require("@lune/datetime")
-- Creates a DateTime for the current exact moment in timelocal now = DateTime.now()
-- Formats the current moment in time as an RFC 3339 stringprint(now:toRfc3339())
-- Formats the current moment in time as an RFC 2822 stringprint(now:toRfc2822())
-- Formats the current moment in time, using the local-- time, the French locale, and the specified time stringprint(now:formatLocalTime("%A, %d %B %Y", "fr"))
-- Returns a specific moment in time as a DateTime instancelocal someDayInTheFuture = DateTime.fromLocalTime({ year = 3033, month = 8, day = 26, hour = 16, minute = 56, second = 28, millisecond = 892,})
-- Extracts the current local date & time as separate values (same values as above table)print(now:toLocalTime())
-- Returns a DateTime instance from a given float, where the whole-- denotes the seconds and the fraction denotes the milliseconds-- Note that the fraction for millis here is completely optionalDateTime.fromUnixTimestamp(871978212313.321)
-- Extracts the current universal (UTC) date & time as separate valuesprint(now:toUniversalTime())Properties
Section titled “Properties”unixTimestamp
Section titled “unixTimestamp”number
Number of seconds passed since the UNIX epoch.
unixTimestampMillis
Section titled “unixTimestampMillis”number
Number of milliseconds passed since the UNIX epoch.
Constructors
Section titled “Constructors”Returns a DateTime representing the current moment in time.
Returns
Section titled “Returns”DateTimeThe new DateTime object
fromUnixTimestamp
Section titled “fromUnixTimestamp”Creates a new DateTime from the given UNIX timestamp.
This timestamp may contain both a whole and fractional part - where the fractional part denotes milliseconds / nanoseconds.
Example usage of fractions:
DateTime.fromUnixTimestamp(123456789.001)- one millisecondDateTime.fromUnixTimestamp(123456789.000000001)- one nanosecond
Note that the fractional part has limited precision down to exactly one nanosecond, any fraction that is more precise will get truncated.
Parameters
Section titled “Parameters”unixTimestampnumberSeconds passed since the UNIX epoch
Returns
Section titled “Returns”DateTimeThe new DateTime object
fromUniversalTime
Section titled “fromUniversalTime”Creates a new DateTime from the given date & time values table, in universal (UTC) time.
The given table must contain the following values:
| Key | Type | Range |
|---|---|---|
year | number | 1400 -> 9999 |
month | number | 1 -> 12 |
day | number | 1 -> 31 |
hour | number | 0 -> 23 |
minute | number | 0 -> 59 |
second | number | 0 -> 60 |
An additional millisecond value may also be included,
and should be within the range 0 -> 999, but is optional.
Any non-integer values in the given table will be rounded down.
Errors
Section titled “Errors”This constructor is fallible and may throw an error in the following situations:
- Date units (year, month, day) were given that produce an invalid date. For example, January 32nd or February 29th on a non-leap year.
Parameters
Section titled “Parameters”valuesDateTimeValueArgumentsTable containing date & time values
Returns
Section titled “Returns”DateTimeThe new DateTime object
fromLocalTime
Section titled “fromLocalTime”Creates a new DateTime from the given date & time values table, in local time.
The given table must contain the following values:
| Key | Type | Range |
|---|---|---|
year | number | 1400 -> 9999 |
month | number | 1 -> 12 |
day | number | 1 -> 31 |
hour | number | 0 -> 23 |
minute | number | 0 -> 59 |
second | number | 0 -> 60 |
An additional millisecond value may also be included,
and should be within the range 0 -> 999, but is optional.
Any non-integer values in the given table will be rounded down.
Errors
Section titled “Errors”This constructor is fallible and may throw an error in the following situations:
- Date units (year, month, day) were given that produce an invalid date. For example, January 32nd or February 29th on a non-leap year.
Parameters
Section titled “Parameters”valuesDateTimeValueArgumentsTable containing date & time values
Returns
Section titled “Returns”DateTimeThe new DateTime object
fromIsoDate
Section titled “fromIsoDate”DEPRECATED: Use DateTime.fromRfc3339 instead.
Creates a new DateTime from an ISO 8601 date-time string.
Errors
Section titled “Errors”This constructor is fallible and may throw an error if the given string does not strictly follow the ISO 8601 date-time string format.
Some examples of valid ISO 8601 date-time strings are:
2020-02-22T18:12:08Z2000-01-31T12:34:56+05:001970-01-01T00:00:00.055Z
Parameters
Section titled “Parameters”isoDatestringAn ISO 8601 formatted string
Returns
Section titled “Returns”DateTimeThe new DateTime object
fromRfc3339
Section titled “fromRfc3339”Creates a new DateTime from an RFC 3339 date-time string.
Errors
Section titled “Errors”This constructor is fallible and may throw an error if the given string does not strictly follow the RFC 3339 date-time string format.
Some examples of valid RFC 3339 date-time strings are:
2020-02-22T18:12:08Z2000-01-31T12:34:56+05:001970-01-01T00:00:00.055Z
Parameters
Section titled “Parameters”rfc3339DatestringAn RFC 3339 formatted string
Returns
Section titled “Returns”DateTimeThe new DateTime object
fromRfc2822
Section titled “fromRfc2822”Creates a new DateTime from an RFC 2822 date-time string.
Errors
Section titled “Errors”This constructor is fallible and may throw an error if the given string does not strictly follow the RFC 2822 date-time string format.
Some examples of valid RFC 2822 date-time strings are:
Fri, 21 Nov 1997 09:55:06 -0600Tue, 1 Jul 2003 10:52:37 +0200Mon, 23 Dec 2024 01:58:48 GMT
Parameters
Section titled “Parameters”rfc2822DatestringAn RFC 2822 formatted string
Returns
Section titled “Returns”DateTimeThe new DateTime object
Methods
Section titled “Methods”formatLocalTime
Section titled “formatLocalTime”Formats this DateTime using the given formatString and locale, as local time.
The given formatString is parsed using a strftime/strptime-inspired
date and time formatting syntax, allowing tokens such as the following:
| Token | Example | Description |
|---|---|---|
%Y | 1998 | Year number |
%m | 04 | Month number |
%d | 29 | Day number |
%A | Monday | Weekday name |
%M | 59 | Minute number |
%S | 10 | Second number |
For a full reference of all available tokens, see the chrono documentation.
If not provided, formatString and locale will default
to "%Y-%m-%d %H:%M:%S" and "en" (english) respectively.
Parameters
Section titled “Parameters”-
selfDateTime -
formatStringstring?A string containing formatting tokens -
localeLocale?The locale the time should be formatted in
Returns
Section titled “Returns”stringThe formatting string
formatUniversalTime
Section titled “formatUniversalTime”Formats this DateTime using the given formatString and locale, as UTC (universal) time.
The given formatString is parsed using a strftime/strptime-inspired
date and time formatting syntax, allowing tokens such as the following:
| Token | Example | Description |
|---|---|---|
%Y | 1998 | Year number |
%m | 04 | Month number |
%d | 29 | Day number |
%A | Monday | Weekday name |
%M | 59 | Minute number |
%S | 10 | Second number |
For a full reference of all available tokens, see the chrono documentation.
If not provided, formatString and locale will default
to "%Y-%m-%d %H:%M:%S" and "en" (english) respectively.
Parameters
Section titled “Parameters”-
selfDateTime -
formatStringstring?A string containing formatting tokens -
localeLocale?The locale the time should be formatted in
Returns
Section titled “Returns”stringThe formatting string
toIsoDate
Section titled “toIsoDate”DEPRECATED: Use DateTime.toRfc3339 instead.
Formats this DateTime as an ISO 8601 date-time string.
Some examples of ISO 8601 date-time strings are:
2020-02-22T18:12:08Z2000-01-31T12:34:56+05:001970-01-01T00:00:00.055Z
Parameters
Section titled “Parameters”selfDateTime
Returns
Section titled “Returns”stringThe ISO 8601 formatted string
toRfc2822
Section titled “toRfc2822”Formats this DateTime as an RFC 2822 date-time string.
Some examples of RFC 2822 date-time strings are:
Fri, 21 Nov 1997 09:55:06 -0600Tue, 1 Jul 2003 10:52:37 +0200Mon, 23 Dec 2024 01:58:48 GMT
Parameters
Section titled “Parameters”selfDateTime
Returns
Section titled “Returns”stringThe RFC 2822 formatted string
toRfc3339
Section titled “toRfc3339”Formats this DateTime as an RFC 3339 date-time string.
Some examples of RFC 3339 date-time strings are:
2020-02-22T18:12:08Z2000-01-31T12:34:56+05:001970-01-01T00:00:00.055Z
Parameters
Section titled “Parameters”selfDateTime
Returns
Section titled “Returns”stringThe RFC 3339 formatted string
toLocalTime
Section titled “toLocalTime”Extracts separated local date & time values from this DateTime.
The returned table contains the following values:
| Key | Type | Range |
|---|---|---|
year | number | 1400 -> 9999 |
month | number | 1 -> 12 |
day | number | 1 -> 31 |
hour | number | 0 -> 23 |
minute | number | 0 -> 59 |
second | number | 0 -> 60 |
millisecond | number | 0 -> 999 |
Parameters
Section titled “Parameters”selfDateTime
Returns
Section titled “Returns”DateTimeValueReturnsA table of DateTime values
toUniversalTime
Section titled “toUniversalTime”Extracts separated UTC (universal) date & time values from this DateTime.
The returned table contains the following values:
| Key | Type | Range |
|---|---|---|
year | number | 1400 -> 9999 |
month | number | 1 -> 12 |
day | number | 1 -> 31 |
hour | number | 0 -> 23 |
minute | number | 0 -> 59 |
second | number | 0 -> 60 |
millisecond | number | 0 -> 999 |
Parameters
Section titled “Parameters”selfDateTime
Returns
Section titled “Returns”DateTimeValueReturnsA table of DateTime values
Locale
Section titled “Locale”Enum type representing supported DateTime locales.
Currently supported locales are:
en- Englishde- Germanes- Spanishfr- Frenchit- Italianja- Japanesepl- Polishpt-br- Brazilian Portuguesept- Portuguesetr- Turkish
DateTimeValues
Section titled “DateTimeValues”Individual date & time values, representing the primitives that make up a DateTime.
This is a dictionary that will contain the following values:
year- Year(s), in the range 1400 -> 9999month- Month(s), in the range 1 -> 12day- Day(s), in the range 1 -> 31hour- Hour(s), in the range 0 -> 23minute- Minute(s), in the range 0 -> 59second- Second(s), in the range 0 -> 60, where 60 is a leap second
An additional millisecond value may also be included,
and should be within the range 0 -> 999, but is optional.
However, any method returning this type should be guaranteed to include milliseconds - see individual methods to verify.
DateTimeValueArguments
Section titled “DateTimeValueArguments”Alias for DateTimeValues with an optional millisecond value.
Refer to the DateTimeValues documentation for additional information.
DateTimeValueReturns
Section titled “DateTimeValueReturns”Alias for DateTimeValues with a mandatory millisecond value.
Refer to the DateTimeValues documentation for additional information.