mirror of
https://github.com/felixrieseberg/windows95.git
synced 2026-05-09 00:24:09 +00:00
4 lines
132 B
TypeScript
4 lines
132 B
TypeScript
export function log(message: string, ...args: unknown[]) {
|
|
console.log(`[${new Date().toLocaleString()}] ${message}`, ...args);
|
|
}
|