-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathhas-properties.js
55 lines (51 loc) · 1.63 KB
/
has-properties.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/**
* @module 101/has-properties
*/
var eql = require('deep-eql');
var isObject = require('./is-object');
var isBoolean = require('./is-boolean');
var isArray = Array.isArray;
/**
* Determines whether the keys exist and, if specified, has the values.
* If obj is not provided findIndex will return a partial function which accepts a obj as the first argument.
* @function module:101/has-properties
* @param {object} [obj] - the object whose properties being checked
* @param {object|array} properties - keys and values (object) or keys expected to exist on the object (array)
* @param {boolean} [deep] - deep equals when values are specified (objects are recursed),
* deep key existance (prototype) when only keys are specified
* @return {boolean|function} Has keypaths or Partial-function hasProperties (which accepts obj)
*/
module.exports = function (obj, props, deep) { // deep defaults to true
if (isBoolean(props)) {
deep = props;
props = null;
}
if (arguments.length === 1 || arguments.length === 2 && !props) {
props = obj;
return function (obj) {
return hasProperties(obj, props, deep);
};
}
else {
return hasProperties(obj, props, deep);
}
};
function hasProperties (obj, props, deep) {
var has = false;
deep = !isBoolean(deep) ? true : deep;
if (isObject(props)) {
has = Object.keys(props).every(function (key) {
return deep ?
eql(obj[key], props[key]) :
obj[key] === props[key];
});
}
else if (isArray(props)) {
has = props.every(function (key) {
return deep ?
(key in obj) :
obj.hasOwnProperty(key);
});
}
return has;
}