Better name for app state (#1300)

* Better name for app state

* Snapshot
This commit is contained in:
Lipis 2020-04-08 01:31:28 +03:00 committed by GitHub
parent 9a1af38c97
commit 26fd2fe165
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 265 additions and 264 deletions

View file

@ -10,21 +10,20 @@ export function setDateTimeForTests(dateTime: string) {
mockDateTime = dateTime;
}
export function getDateTime() {
export const getDateTime = () => {
if (mockDateTime) {
return mockDateTime;
}
const date = new Date();
const year = date.getFullYear();
const month = date.getMonth() + 1;
const day = date.getDate();
const hr = date.getHours();
const min = date.getMinutes();
const secs = date.getSeconds();
const month = `${date.getMonth() + 1}`.padStart(2, "0");
const day = `${date.getDate()}`.padStart(2, "0");
const hr = `${date.getHours()}`.padStart(2, "0");
const min = `${date.getMinutes()}`.padStart(2, "0");
return `${year}${month}${day}${hr}${min}${secs}`;
}
return `${year}-${month}-${day}-${hr}${min}`;
};
export function capitalizeString(str: string) {
return str.charAt(0).toUpperCase() + str.slice(1);