Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/cli-kit/src/public/common/object.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import lodashIsEmpty from 'lodash/isEmpty.js'
* @param rhs - Another object to be merged.
* @param arrayMergeStrategy - Strategy used to merge the array typed fields. Union strategy is used by default to avoid
* duplicated elements.
* @returns A Javascrip tobject with th emerged objects.
* @returns A JavaScript object with the merged objects.
*/
export function deepMergeObjects<T1, T2>(
lhs: Partial<T1>,
Expand Down Expand Up @@ -93,7 +93,7 @@ export function getPathValue<T = object>(object: object, path: PropertyPath): T
}

/**
* Sets the value at path of object. If a portion of path doesn't exist, it's create.
* Sets the value at path of object. If a portion of path doesn't exist, it's created.
*
* @param object - The object to modify.
* @param path - The path of the property to set.
Expand Down
Loading