mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-02 02:58:10 +02:00
5 lines
143 B
TypeScript
5 lines
143 B
TypeScript
|
|
export const timeString = (time) => {
|
||
|
|
const tm = new Date(time * 1000);
|
||
|
|
return tm.toLocaleDateString() + " " + tm.toLocaleTimeString();
|
||
|
|
};
|