Add functions used to convert handle values representing Dates. This is crucial for many types of conversion since many JSON are including date/time related fields.
Function added
toEpochMilli(string, pattern): converts string formatted as pattern into EPOCH
fromEpochMilli(numeric_epoch, pattern): converts numeric_epoch from a numeric format to a string formatted using pattern.
Add functions used to convert handle values representing
Date
s. This is crucial for many types of conversion since many JSON are including date/time related fields.Function added
toEpochMilli(string, pattern)
: convertsstring
formatted aspattern
into EPOCHfromEpochMilli(numeric_epoch, pattern)
: convertsnumeric_epoch
from a numeric format to a string formatted usingpattern
.now()
: return current EPOCH (in numeric format)