main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
597 bytes
|
Line | |
---|
1 | var _curry2 =
|
---|
2 | /*#__PURE__*/
|
---|
3 | require("./internal/_curry2.js");
|
---|
4 | /**
|
---|
5 | * Returns `true` if the first argument is greater than the second; `false`
|
---|
6 | * otherwise.
|
---|
7 | *
|
---|
8 | * @func
|
---|
9 | * @memberOf R
|
---|
10 | * @since v0.1.0
|
---|
11 | * @category Relation
|
---|
12 | * @sig Ord a => a -> a -> Boolean
|
---|
13 | * @param {*} a
|
---|
14 | * @param {*} b
|
---|
15 | * @return {Boolean}
|
---|
16 | * @see R.lt
|
---|
17 | * @example
|
---|
18 | *
|
---|
19 | * R.gt(2, 1); //=> true
|
---|
20 | * R.gt(2, 2); //=> false
|
---|
21 | * R.gt(2, 3); //=> false
|
---|
22 | * R.gt('a', 'z'); //=> false
|
---|
23 | * R.gt('z', 'a'); //=> true
|
---|
24 | */
|
---|
25 |
|
---|
26 |
|
---|
27 | var gt =
|
---|
28 | /*#__PURE__*/
|
---|
29 | _curry2(function gt(a, b) {
|
---|
30 | return a > b;
|
---|
31 | });
|
---|
32 |
|
---|
33 | module.exports = gt; |
---|
Note:
See
TracBrowser
for help on using the repository browser.