6 lines
135 B
TypeScript
6 lines
135 B
TypeScript
import dayjs from "dayjs";
|
|
|
|
export const DateHelper = {
|
|
now: () => dayjs().valueOf(), // Get current time in epoch (milliseconds)
|
|
};
|