import _curry3 from './utils/_curry3';
import lowerPath from './lower-path';
/**
* Returns true if the specified object property at given path satisfies the given predicate; false otherwise.
* The individual keys on the path are transformed to lowercase before checking the actual value.
*
* @example
* lowerPathSatisfies(isNil, ['country', 'IE'], {country: { ie: '�' } });
* // -> false
*
* @function
* @see https://ramdajs.com/docs/#pathSatisfies
* @param {Function} pred The predicate to check the value.
* @param {string[]} path The path to the value (items in here will be lowercased).
* @param {object} obj The source of the value to extract.
* @returns {boolean} True if the object property at given path satisfies the given predicate.
*/
function lowerPathSatisfies(pred, propPath, obj) {
return propPath.length > 0 && pred(lowerPath(propPath, obj));
}
export default _curry3(lowerPathSatisfies);