4 minutes read

This document is a draft version and subject to further review and revision. Please refrain from distributing or relying on its contents as final.

UI ElementDescription
getGet the value at `path` of `object`. If the resolved value is `undefined`, the `defaultValue` is returned in its place.
hasCheck if `path` is a direct property of `object`.
matchesPropertyCreate a function that performs a partial deep comparison between the value at `path` of a given object to `srcValue`, returning `true` if the object value is equivalent, else `false`.
mergeThis method is like `assign()` except that it recursively merges own and inherited enumerable string keyed properties of source objects into the destination object.
sizeGet the size of collection by returning its length for array-like values or the number of own enumerable string keyed properties for objects.