function defaultimport { default } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/property.js"; default(path)Creates a function that returns the value at path of a given object. Examplesvar objects = [ { 'a': { 'b': 2 } }, { 'a': { 'b': 1 } } ]; _.map(objects, _.property('a.b')); // => [2, 1] .map(.sortBy(objects, _.property(['a', 'b'])), 'a.b'); // => [1, 2] ParameterspathThe path of the property to get.