source: node_modules/es-toolkit/dist/compat/util/gt.d.ts@ a762898

Last change on this file since a762898 was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 380 bytes
Line 
1/**
2 * Checks if value is greater than other.
3 *
4 * @param {any} value The value to compare.
5 * @param {any} other The other value to compare.
6 * @returns {boolean} Returns `true` if value is greater than other, else `false`.
7 *
8 * @example
9 * gt(3, 1); // true
10 * gt(3, 3); // false
11 * gt(1, 3); // false
12 */
13declare function gt(value: any, other: any): boolean;
14
15export { gt };
Note: See TracBrowser for help on using the repository browser.