source: node_modules/ramda/src/comparator.js@ d24f17c

main
Last change on this file since d24f17c was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 1.1 KB
Line 
1var _curry1 =
2/*#__PURE__*/
3require("./internal/_curry1.js");
4/**
5 * Makes a comparator function out of a function that reports whether the first
6 * element is less than the second.
7 *
8 * @func
9 * @memberOf R
10 * @since v0.1.0
11 * @category Function
12 * @sig ((a, b) -> Boolean) -> ((a, b) -> Number)
13 * @param {Function} pred A predicate function of arity two which will return `true` if the first argument
14 * is less than the second, `false` otherwise
15 * @return {Function} A Function :: a -> b -> Int that returns `-1` if a < b, `1` if b < a, otherwise `0`
16 * @example
17 *
18 * const byAge = R.comparator((a, b) => a.age < b.age);
19 * const people = [
20 * { name: 'Emma', age: 70 },
21 * { name: 'Peter', age: 78 },
22 * { name: 'Mikhail', age: 62 },
23 * ];
24 * const peopleByIncreasingAge = R.sort(byAge, people);
25 * //=> [{ name: 'Mikhail', age: 62 },{ name: 'Emma', age: 70 }, { name: 'Peter', age: 78 }]
26 */
27
28
29var comparator =
30/*#__PURE__*/
31_curry1(function comparator(pred) {
32 return function (a, b) {
33 return pred(a, b) ? -1 : pred(b, a) ? 1 : 0;
34 };
35});
36
37module.exports = comparator;
Note: See TracBrowser for help on using the repository browser.