function defaultimport { default } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/has.js"; default(object, path)Checks if path is a direct property of object. Examplesvar object = { 'a': { 'b': 2 } }; var other = _.create({ 'a': _.create({ 'b': 2 }) }); _.has(object, 'a'); // => true _.has(object, 'a.b'); // => true _.has(object, ['a', 'b']); // => true _.has(other, 'a'); // => false ParametersobjectThe object to query. pathThe path to check.