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