Source: logic/greaterThan.js

import curry2 from "../function/curry2";

/**
 * A curried wrapper around the `>` operator.
 *
 * @param {any} right
 * @param {any} left
 * @returns {boolean}
 */
const gt = (right, left) => left > right;

export default curry2(gt);