test-action-debian-package/node_modules/ramda/es/and.js
Dawid Dziurla 9308795b8b
update
2020-03-26 15:37:35 +01:00

28 lines
613 B
JavaScript

import _curry2 from "./internal/_curry2.js";
/**
* Returns `true` if both arguments are `true`; `false` otherwise.
*
* @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 it is falsy, otherwise the second argument.
* @see R.both, R.xor
* @example
*
* R.and(true, true); //=> true
* R.and(true, false); //=> false
* R.and(false, true); //=> false
* R.and(false, false); //=> false
*/
var and =
/*#__PURE__*/
_curry2(function and(a, b) {
return a && b;
});
export default and;