@genexus/web-standard-functions
Version:
GeneXus JavaScript standard functions library for web generators
9 lines (8 loc) • 306 B
TypeScript
/**
* Compares the two operands using the indicated operator
* @param {any} left First operand
* @param {string} op Operator
* @param {any} right Second operand
* @return true if the comparition succeds, false otherwise
*/
export declare const compare: <T>(left: T, op: string, right: T) => boolean;