diff --git a/src/time.js b/src/time.js index 3a5696c..6011734 100644 --- a/src/time.js +++ b/src/time.js @@ -1,12 +1,6 @@ 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 + let current_date = "UTC time " + new Date() + return current_date } const get_unix_timestamp = () => {