UNPKG
animapi
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Animapi adalah library scrapper anime streaming dengan sangat cepat dan mudah digunakan.
animapi
/
utils
/
date-converter.ts
6 lines
(4 loc)
•
147 B
text/typescript
View Raw
1
2
3
4
5
6
import
dayjs
from
"dayjs"
;
export
function
parseDate
(
strDate: string, format =
"MMM D, YYYY"
):
Date
{
return
dayjs
(strDate, format).
toDate
(); }