UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

8 lines (7 loc) 270 B
/** * Saves the received value associated with the specified key. * If it is applied consecutive times to the same key, its value is the latest assigned * @param {string} key * @param {string} value */ export declare function set(key: string, value: string): void;