source: node_modules/es-toolkit/dist/compat/util/gte.d.mts@ ba17441

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

Added visualizations

  • Property mode set to 100644
File size: 417 bytes
Line 
1/**
2 * Checks if value is greater than or equal to 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 or equal to other, else `false`.
7 *
8 * @example
9 * gte(3, 1); // => true
10 * gte(3, 3); // => true
11 * gte(1, 3); // => false
12 */
13declare function gte(value: any, other: any): boolean;
14
15export { gte };
Note: See TracBrowser for help on using the repository browser.