source: node_modules/es-toolkit/dist/compat/util/lt.d.mts

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

Added visualizations

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