time, status, error history, running sessions, sessions history, private page with key, added
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
const get_date_time = () => {
|
||||
let currentdate = new Date();
|
||||
let datetime = currentdate.getDate() + "/"
|
||||
+ (currentdate.getMonth()+1) + "/"
|
||||
+ currentdate.getFullYear() + " @ "
|
||||
+ currentdate.getHours() + ":"
|
||||
+ currentdate.getMinutes() + ":"
|
||||
+ currentdate.getSeconds()
|
||||
return datetime
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
get_date_time
|
||||
}
|
||||
Reference in New Issue
Block a user