-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathgt.js
59 lines (57 loc) · 1.7 KB
/
gt.js
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
52
53
54
55
56
57
58
59
const ComparisonOperator = require('./_internal/ComparisonOperator')
const greaterThan = require('./_internal/greaterThan')
/**
* @name gt
*
* @synopsis
* ```coffeescript [specscript]
* gt(leftValue Promise|any, rightValue Promise|any) -> boolean
*
* gt(leftValue Promise|any, right function)(...args) -> Promise|boolean
* gt(...args, leftValue Promise|any, right function) -> Promise|boolean
*
* gt(left function, rightValue Promise|any)(...args) -> Promise|boolean
* gt(...args, left function, rightValue Promise|any) -> Promise|boolean
*
* gt(left function, right function)(...args) -> Promise|boolean
* gt(...args, left function, right function) -> Promise|boolean
* ```
*
* @description
* Test if a value is greater than (`>`) another value.
*
* ```javascript [playground]
* const age = 40
*
* const isAgeGreaterThan21 = gt(age, 21)
*
* console.log(isAgeGreaterThan21) // true
* ```
*
* If either of the two values are resolver functions, `gt` returns a function that resolves the values to compare from its arguments.
*
* ```javascript [playground]
* const isOfLegalAge = gt(21, get('age'))
*
* const juvenile = { age: 16 }
*
* console.log(isOfLegalAge(juvenile)) // false
* ```
*
* `gt` supports a lazy API for composability.
*
* ```javascript [playground]
* pipe({ value: 1 }, [
* gt(5, get('value')),
* console.log, // true
* ])
* ```
*
* Any promises passed in argument position are resolved for their values before further execution. This only applies to the eager version of the API.
*
* ```javascript [playground]
* gt(Promise.resolve({ a: 2, b: 1 }), get('a'), get('b')).then(console.log) // true
* ```
*/
const gt = ComparisonOperator(greaterThan)
module.exports = gt