mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
bbaf619f63
swc_bundler: - [x] Fix wrapped esms. (denoland/deno#9307) - [x] Make test secure.
29 lines
635 B
TypeScript
29 lines
635 B
TypeScript
// Loaded from https://deno.land/x/ramda@v0.27.2/source/eqBy.js
|
|
|
|
|
|
import _curry3 from './internal/_curry3.js';
|
|
import equals from './equals.js';
|
|
|
|
|
|
/**
|
|
* 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 = _curry3(function eqBy(f, x, y) {
|
|
return equals(f(x), f(y));
|
|
});
|
|
export default eqBy;
|