mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 05:01:42 +03:00
30 lines
696 B
TypeScript
30 lines
696 B
TypeScript
|
// Loaded from https://deno.land/x/ramda@v0.27.2/source/or.js
|
||
|
|
||
|
|
||
|
import _curry2 from './internal/_curry2.js';
|
||
|
|
||
|
/**
|
||
|
* 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, R.and
|
||
|
* @example
|
||
|
*
|
||
|
* R.or(true, true); //=> true
|
||
|
* R.or(true, false); //=> true
|
||
|
* R.or(false, true); //=> true
|
||
|
* R.or(false, false); //=> false
|
||
|
*/
|
||
|
var or = _curry2(function or(a, b) {
|
||
|
return a || b;
|
||
|
});
|
||
|
export default or;
|