forked from waja/action-debian-package
29 lines
465 B
JavaScript
29 lines
465 B
JavaScript
var _curry2 =
|
|
/*#__PURE__*/
|
|
require("./internal/_curry2");
|
|
/**
|
|
* Returns the smaller of its two arguments.
|
|
*
|
|
* @func
|
|
* @memberOf R
|
|
* @since v0.1.0
|
|
* @category Relation
|
|
* @sig Ord a => a -> a -> a
|
|
* @param {*} a
|
|
* @param {*} b
|
|
* @return {*}
|
|
* @see R.minBy, R.max
|
|
* @example
|
|
*
|
|
* R.min(789, 123); //=> 123
|
|
* R.min('a', 'b'); //=> 'a'
|
|
*/
|
|
|
|
|
|
var min =
|
|
/*#__PURE__*/
|
|
_curry2(function min(a, b) {
|
|
return b < a ? b : a;
|
|
});
|
|
|
|
module.exports = min; |