Epoch¶
Returns the year from the input date.
Options¶
date(optional) Input date. Defaults to now.unit(optional) ChronoUnit to for epoch (e.gMILLIS,SECONDS,MINUTES). Defaults toMILLIS.
Example¶
{
"nowEpoch": "$epoch",
"someDate": "$dt",
"someEpoch": {
"$epoch": {
"date": "${someDate}",
"unit": "SECONDS"
}
}
}
{
"nowEpoch": 1569089885601,
"someDate": ISODate("1997-02-25T18:30:36.731Z"),
"someEpoch": 1569089885
}