mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
410 B
16 lines
410 B
9 years ago
|
var assocIndexOf = require('./_assocIndexOf');
|
||
|
|
||
|
/**
|
||
|
* Checks if an associative array value for `key` exists.
|
||
|
*
|
||
|
* @private
|
||
|
* @param {Array} array The array to query.
|
||
|
* @param {string} key The key of the entry to check.
|
||
|
* @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
|
||
|
*/
|
||
|
function assocHas(array, key) {
|
||
|
return assocIndexOf(array, key) > -1;
|
||
|
}
|
||
|
|
||
|
module.exports = assocHas;
|