refactor(Cypress): Moved Cypress to the main folder of the project, as I don't need a sub project for now.
This commit is contained in:
28
node_modules/ramda/es/propSatisfies.js
generated
vendored
Normal file
28
node_modules/ramda/es/propSatisfies.js
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
import _curry3 from "./internal/_curry3.js";
|
||||
/**
|
||||
* Returns `true` if the specified object property satisfies the given
|
||||
* predicate; `false` otherwise. You can test multiple properties with
|
||||
* [`R.where`](#where).
|
||||
*
|
||||
* @func
|
||||
* @memberOf R
|
||||
* @since v0.16.0
|
||||
* @category Logic
|
||||
* @sig (a -> Boolean) -> String -> {String: a} -> Boolean
|
||||
* @param {Function} pred
|
||||
* @param {String} name
|
||||
* @param {*} obj
|
||||
* @return {Boolean}
|
||||
* @see R.where, R.propEq, R.propIs
|
||||
* @example
|
||||
*
|
||||
* R.propSatisfies(x => x > 0, 'x', {x: 1, y: 2}); //=> true
|
||||
*/
|
||||
|
||||
var propSatisfies =
|
||||
/*#__PURE__*/
|
||||
_curry3(function propSatisfies(pred, name, obj) {
|
||||
return pred(obj[name]);
|
||||
});
|
||||
|
||||
export default propSatisfies;
|
Reference in New Issue
Block a user