@appsemble/utils
Version:
Utility functions used in Appsemble internally
9 lines (8 loc) • 300 B
TypeScript
/**
* Default comparison function for strings.
*
* @param a The first string to compare.
* @param b The second string to compare.
* @returns Number representing whether `a` is less than, equal, or great compared to `b`.
*/
export declare const compareStrings: (x: string, y: string) => number;