UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

10 lines 326 B
/** * Sets the current timezone * @Parm timezone */ import { storageKey } from "./timezone"; import { ConfigurationState } from "../config/configurationState"; export const setTimezone = (timezone) => { ConfigurationState.getInstance().setDynStoredValue(storageKey, timezone); }; //# sourceMappingURL=setTimezone.js.map