mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 05:01:42 +03:00
36 lines
967 B
TypeScript
36 lines
967 B
TypeScript
// Loaded from https://deno.land/x/ramda@v0.27.2/source/has.js
|
|
|
|
|
|
import _curry2 from './internal/_curry2.js';
|
|
import hasPath from './hasPath.js';
|
|
|
|
|
|
/**
|
|
* Returns whether or not an object has an own property with the specified name
|
|
*
|
|
* @func
|
|
* @memberOf R
|
|
* @since v0.7.0
|
|
* @category Object
|
|
* @sig s -> {s: x} -> Boolean
|
|
* @param {String} prop The name of the property to check for.
|
|
* @param {Object} obj The object to query.
|
|
* @return {Boolean} Whether the property exists.
|
|
* @example
|
|
*
|
|
* const hasName = R.has('name');
|
|
* hasName({name: 'alice'}); //=> true
|
|
* hasName({name: 'bob'}); //=> true
|
|
* hasName({}); //=> false
|
|
*
|
|
* const point = {x: 0, y: 0};
|
|
* const pointHas = R.has(R.__, point);
|
|
* pointHas('x'); //=> true
|
|
* pointHas('y'); //=> true
|
|
* pointHas('z'); //=> false
|
|
*/
|
|
var has = _curry2(function has(prop, obj) {
|
|
return hasPath([prop], obj);
|
|
});
|
|
export default has;
|