mirror of https://github.com/lukechilds/docs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
615 B
26 lines
615 B
var _curry2 = require('./internal/_curry2');
|
|
|
|
|
|
/**
|
|
* Returns `true` if one or both of its arguments are `true`. Returns `false`
|
|
* if both arguments are `false`.
|
|
*
|
|
* @func
|
|
* @memberOf R
|
|
* @since v0.1.0
|
|
* @category Logic
|
|
* @sig a -> b -> a | b
|
|
* @param {Any} a
|
|
* @param {Any} b
|
|
* @return {Any} the first argument if truthy, otherwise the second argument.
|
|
* @see R.either
|
|
* @example
|
|
*
|
|
* R.or(true, true); //=> true
|
|
* R.or(true, false); //=> true
|
|
* R.or(false, true); //=> true
|
|
* R.or(false, false); //=> false
|
|
*/
|
|
module.exports = _curry2(function or(a, b) {
|
|
return a || b;
|
|
});
|
|
|