forked from waja/action-debian-package
update
This commit is contained in:
parent
d9becc67b6
commit
9308795b8b
964 changed files with 104265 additions and 16 deletions
33
node_modules/ramda/src/eqBy.js
generated
vendored
Normal file
33
node_modules/ramda/src/eqBy.js
generated
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
var _curry3 =
|
||||
/*#__PURE__*/
|
||||
require("./internal/_curry3");
|
||||
|
||||
var equals =
|
||||
/*#__PURE__*/
|
||||
require("./equals");
|
||||
/**
|
||||
* Takes a function and two values in its domain and returns `true` if the
|
||||
* values map to the same value in the codomain; `false` otherwise.
|
||||
*
|
||||
* @func
|
||||
* @memberOf R
|
||||
* @since v0.18.0
|
||||
* @category Relation
|
||||
* @sig (a -> b) -> a -> a -> Boolean
|
||||
* @param {Function} f
|
||||
* @param {*} x
|
||||
* @param {*} y
|
||||
* @return {Boolean}
|
||||
* @example
|
||||
*
|
||||
* R.eqBy(Math.abs, 5, -5); //=> true
|
||||
*/
|
||||
|
||||
|
||||
var eqBy =
|
||||
/*#__PURE__*/
|
||||
_curry3(function eqBy(f, x, y) {
|
||||
return equals(f(x), f(y));
|
||||
});
|
||||
|
||||
module.exports = eqBy;
|
Loading…
Add table
Add a link
Reference in a new issue