test-action-debian-package/node_modules/ramda/es/propIs.js
Dawid Dziurla 9308795b8b
update
2020-03-26 15:37:35 +01:00

30 lines
713 B
JavaScript

import _curry3 from "./internal/_curry3.js";
import is from "./is.js";
/**
* Returns `true` if the specified object property is of the given type;
* `false` otherwise.
*
* @func
* @memberOf R
* @since v0.16.0
* @category Type
* @sig Type -> String -> Object -> Boolean
* @param {Function} type
* @param {String} name
* @param {*} obj
* @return {Boolean}
* @see R.is, R.propSatisfies
* @example
*
* R.propIs(Number, 'x', {x: 1, y: 2}); //=> true
* R.propIs(Number, 'x', {x: 'foo'}); //=> false
* R.propIs(Number, 'x', {}); //=> false
*/
var propIs =
/*#__PURE__*/
_curry3(function propIs(type, name, obj) {
return is(type, obj[name]);
});
export default propIs;