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.
32 lines
854 B
TypeScript
32 lines
854 B
TypeScript
// Loaded from https://deno.land/x/ramda@v0.27.2/source/pathSatisfies.js
|
|
|
|
|
|
import _curry3 from './internal/_curry3.js';
|
|
import path from './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 = _curry3(function pathSatisfies(pred, propPath, obj) {
|
|
return pred(path(propPath, obj));
|
|
});
|
|
export default pathSatisfies;
|