server-json/node_modules/ramda/es/pathSatisfies.js
2024-11-01 08:00:42 +00:00

27 lines
No EOL
802 B
JavaScript

import _curry3 from "./internal/_curry3.js";
import _path from "./internal/_path.js";
/**
* Returns `true` if the specified object property at given path satisfies the
* given predicate; `false` otherwise.
*
* @func
* @memberOf R
* @since v0.19.0
* @category Logic
* @typedefn Idx = String | Int | Symbol
* @sig (a -> Boolean) -> [Idx] -> {a} -> Boolean
* @param {Function} pred
* @param {Array} propPath
* @param {*} obj
* @return {Boolean}
* @see R.propSatisfies, R.path
* @example
*
* R.pathSatisfies(y => y > 0, ['x', 'y'], {x: {y: 2}}); //=> true
* R.pathSatisfies(R.is(Object), [], {x: {y: 2}}); //=> true
*/
var pathSatisfies = /*#__PURE__*/_curry3(function pathSatisfies(pred, propPath, obj) {
return pred(_path(propPath, obj));
});
export default pathSatisfies;