-
Notifications
You must be signed in to change notification settings - Fork 15
/
gte.d.ts
51 lines (51 loc) · 1.39 KB
/
gte.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
export = gte;
/**
* @name gte
*
* @synopsis
* ```coffeescript [specscript]
* gte(leftValue Promise|any, rightValue Promise|any) -> boolean
*
* gte(leftValue Promise|any, right function)(...args) -> Promise|boolean
* gte(...args, leftValue Promise|any, right function) -> Promise|boolean
*
* gte(left function, rightValue Promise|any)(...args) -> Promise|boolean
* gte(...args, left function, rightValue Promise|any) -> Promise|boolean
*
* gte(left function, right function)(...args) -> Promise|boolean
* gte(...args, left function, right function) -> Promise|boolean
* ```
*
* @description
* Test if a value is greater than or equal (`>=`) to another value.
*
* ```javascript [playground]
* const age = 20
*
* const isAdultAge = gte(age, 18)
*
* console.log(isAdultAge) // true
* ```
*
* If either of the two values are resolver functions, `gte` returns a function that resolves the values to compare from its arguments.
*
* ```javascript [playground]
* const identity = value => value
*
* const isAtLeast100 = gte(identity, 100)
*
* console.log(isAtLeast100(99)) // false
* console.log(isAtLeast100(100)) // true
* console.log(isAtLeast100(101)) // true
* ```
*
* `gte` supports a lazy API for composability.
*
* ```javascript [playground]
* pipe({ value: 1 }, [
* gte(1, get('value')),
* console.log, // true
* ])
* ```
*/
declare const gte: (...args: any[]) => any;