COLLECTED BY
Organization:
Internet Archive
Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
The Wayback Machine - https://web.archive.org/web/20201220221106/https://github.com/lodash/lodash/blob/master/has.js
Permalink
Cannot retrieve contributors at this time
28 lines (26 sloc)
685 Bytes
/** Used to check objects for own properties. */
const hasOwnProperty = Object . prototype . hasOwnProperty
/**
* Checks if `key` is a direct property of `object`.
*
* @since 0.1.0
* @category Object
* @param {Object } object The object to query.
* @param {string } key The key to check.
* @returns {boolean } Returns `true` if `key` exists, else `false`.
* @see hasIn, hasPath, hasPathIn
* @example
*
* const object = { 'a': { 'b': 2 } }
* const other = create({ 'a': create({ 'b': 2 }) })
*
* has(object, 'a')
* // => true
*
* has(other, 'a')
* // => false
*/
function has ( object , key ) {
return object != null && hasOwnProperty . call ( object , key )
}
export default has
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.