Current section
Files
Jump to
Current section
Files
src/now_ffi.mjs
export function now() {
const date = new Date();
return [
[date.getUTCFullYear(), date.getUTCMonth() + 1, date.getUTCDate()],
[date.getUTCHours(), date.getUTCMinutes(), date.getUTCSeconds()],
];
}