var date = moment("2014-02-27T10:00:00").format('DD-MM-YYYY');
moment().toDate();
//date time to date momentjs
var support_date = new Date("2021-10-23 00:00:00");
support_date = moment(support_date).format("YYYY-MM-DD");
//output:"2021-10-23"
moment( moment().utc().format( "YYYY-MM-DD HH:mm:ss" )).toDate()
let now = moment()
let now = now.toDate()
moment.toDate()