|
Last change
on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago |
|
Added visualizations
|
-
Property mode
set to
100644
|
|
File size:
417 bytes
|
| Rev | Line | |
|---|
| [a762898] | 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 | */
|
|---|
| 13 | declare function gte(value: any, other: any): boolean;
|
|---|
| 14 |
|
|---|
| 15 | export { gte };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.