Class: Duration
Converts duration strings into ms and future dates
Constructors
new Duration()
new Duration(
pattern
:string
):Duration
Create a new Duration instance
Parameters
Parameter | Type | Description |
---|---|---|
pattern | string | The string to parse |
Returns
Defined in
Properties
days
days:
number
=0
The amount of days extracted from the text.
Defined in
hours
hours:
number
=0
The amount of hours extracted from the text.
Defined in
microseconds
microseconds:
number
=0
The amount of microseconds extracted from the text.
Defined in
milliseconds
milliseconds:
number
=0
The amount of milliseconds extracted from the text.
Defined in
minutes
minutes:
number
=0
The amount of minutes extracted from the text.
Defined in
months
months:
number
=0
The amount of months extracted from the text.
Defined in
nanoseconds
nanoseconds:
number
=0
The amount of nanoseconds extracted from the text.
Defined in
offset
offset:
number
The offset
Defined in
seconds
seconds:
number
=0
The amount of seconds extracted from the text.
Defined in
weeks
weeks:
number
=0
The amount of weeks extracted from the text.
Defined in
years
years:
number
=0
The amount of years extracted from the text.
Defined in
aAndAnRegex
private
readonly
static
aAndAnRegex:RegExp
The RegExp used for replacing a/an with 1
Defined in
commaRegex
private
readonly
static
commaRegex:RegExp
The RegExp used for removing commas
Defined in
patternRegex
private
readonly
static
patternRegex:RegExp
The RegExp used for the pattern parsing
Defined in
Accessors
fromNow
Get Signature
get fromNow():
Date
Get the date from now
Returns
Defined in
Methods
dateFrom()
Get the date from
Parameters
Parameter | Type | Description |
---|---|---|
date | Date | The Date instance to get the date from |