Fix _extend fn - alter provided object#286
Merged
terehov merged 1 commit intofullstack-build:developmentfrom Jun 8, 2024
jakubhruby:master
Merged
Fix _extend fn - alter provided object#286terehov merged 1 commit intofullstack-build:developmentfrom jakubhruby:master
terehov merged 1 commit intofullstack-build:developmentfrom
jakubhruby:master
Conversation
jakubhruby
commented
Jun 6, 2024
| // Don't do anything if add isn't an object | ||
| if (!add || !isObject(add)) return origin; | ||
|
|
||
| const clonedOrigin = { ...origin } as { [key: string]: unknown }; |
Contributor
Author
There was a problem hiding this comment.
This was not needed - it lived just in this method
| clonedOrigin[keys[i]] = clonedAdd[keys[i]]; | ||
| origin[keys[i]] = clonedAdd[keys[i]]; | ||
| } | ||
| return origin; |
Contributor
Author
There was a problem hiding this comment.
Passed object was returned with no change
Contributor
|
Thank you. I have released an update with your changes 👍 |
Contributor
Author
|
This later commit breaks it again https://github.com/fullstack-build/tslog/commits/v4.9.3/#diff-f37f417161a3f575bc97f812d0cc6c5da9a62f6fe5abbb342b4b2789ecad9ada |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #285