UNPKG
lodate
Version:
latest (0.4.0)
0.4.0
0.3.0
0.2.0
0.1.0
date utility functions
github.com/Niklus/lodate
Niklus/lodate
lodate
/
utils
/
yesterday.js
12 lines
(11 loc)
•
224 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/** * * Get yesterdays date * *
@returns
{
Date
} The date of yesterday * *
@example
* yesterday(); // 2023-03-10T17:55:25.205Z */
export
const
yesterday
= (
) =>
new
Date
(
new
Date
().
valueOf
() -
1000
*
60
*
60
*
24
);