1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2025-04-03 03:22:37 +00:00
comunicapiv2/src/utils/DateUtils.ts
2020-03-31 11:21:10 +02:00

21 lines
462 B
TypeScript

/**
* Date utilities
*
* @author Pierre HUBERT
*/
export function time() : number {
return Math.floor((new Date()).getTime()/1000);
}
/**
* Get the current date formatted for the "DATETIME" object of
* a MySQL database
*/
export function mysql_date() : string {
const date = new Date();
return date.getFullYear() + "-" + (date.getMonth()+1) + "-" + (date.getDate())
+ " " + date.getHours() + ":" + date.getMinutes() + ":" + date.getSeconds();
}