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