UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

11 lines 254 B
/** * Returns the current date. * @return GxDate */ import { GxDate } from "../types/gxdate"; export const today = () => { let todayDate = new GxDate(); todayDate.setHours(0, 0, 0, 0); return todayDate; }; //# sourceMappingURL=today.js.map