[utils] add "formatLocalDateTime" func in helperMethods.js
This commit is contained in:
@@ -447,3 +447,21 @@ export const decryptPhoneNumber = (encryptedPhoneNumber) => {
|
||||
|
||||
return encryptedPhoneNumber;
|
||||
};
|
||||
|
||||
export const formatLocalDateTime = (date) => {
|
||||
const isDate = (obj) =>
|
||||
Object.prototype.toString.call(obj) === "[object Date]";
|
||||
|
||||
if (typeof window === "object" && isDate(date)) {
|
||||
const year = date.getFullYear();
|
||||
const month = String(date.getMonth() + 1).padStart(2, "0");
|
||||
const day = String(date.getDate()).padStart(2, "0");
|
||||
const hours = String(date.getHours()).padStart(2, "0");
|
||||
const minutes = String(date.getMinutes()).padStart(2, "0");
|
||||
const seconds = String(date.getSeconds()).padStart(2, "0");
|
||||
|
||||
return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
|
||||
}
|
||||
|
||||
return "";
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user