feat: allow updating memo createdTs

This commit is contained in:
Steven
2022-08-25 22:02:32 +08:00
parent 9f3f730723
commit 57f51d1c58
9 changed files with 172 additions and 21 deletions

View File

@ -44,10 +44,6 @@ export function getDateString(t: Date | number | string): string {
return `${year}/${month}/${date}`;
}
export function getDataStringWithTs(ts: number): string {
return getDateTimeString(ts * 1000);
}
export function getTimeString(t: Date | number | string): string {
const d = new Date(getTimeStampByDate(t));