mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
Better name for app state (#1300)
* Better name for app state * Snapshot
This commit is contained in:
parent
9a1af38c97
commit
26fd2fe165
4 changed files with 265 additions and 264 deletions
15
src/utils.ts
15
src/utils.ts
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue