forked from lodash/lodash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
has.js
34 lines (32 loc) · 763 Bytes
/
has.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import baseHas from './.internal/baseHas.js';
import hasPath from './.internal/hasPath.js';
/**
* Checks if `path` is a direct property of `object`.
*
* @since 0.1.0
* @category Object
* @param {Object} object The object to query.
* @param {Array|string} path The path to check.
* @returns {boolean} Returns `true` if `path` exists, else `false`.
* @see hasIn, set, get
* @example
*
* const object = { 'a': { 'b': 2 } };
* const other = create({ 'a': create({ 'b': 2 }) });
*
* has(object, 'a');
* // => true
*
* has(object, 'a.b');
* // => true
*
* has(object, ['a', 'b']);
* // => true
*
* has(other, 'a');
* // => false
*/
function has(object, path) {
return object != null && hasPath(object, path, baseHas);
}
export default has;