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