UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

8 lines (7 loc) 239 B
/** * Compares two strings * @param {string} str1 Source string * @param {string} str2 Search string * @result true if the search string is found, false otherwise */ export declare const like: (str1: string, str2: string) => boolean;