UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

9 lines (8 loc) 313 B
/** * Concatenates the two given strings using the optional separator * @param {string} value1 First string * @param {string} value2 Second string * @param {string} separator Optional separator * @return string */ export declare const concat: (value1: string, value2: string, separator?: string) => string;