mirror of
https://github.com/SrIzan10/api.git
synced 2026-06-06 00:46:48 +00:00
7 lines
157 B
TypeScript
7 lines
157 B
TypeScript
|
|
|
|
export async function consolelogTime(message: string) {
|
|
const unix = new Date()
|
|
|
|
return console.log(`[${unix.toLocaleTimeString()}] ${message}`);
|
|
} |