Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prefix param with underscore to prevent unused param warning #1145

Merged
merged 2 commits into from
Sep 19, 2024

Conversation

alissalkvc
Copy link
Contributor

@alissalkvc alissalkvc commented Sep 12, 2024

Here's the current issue:
image

Fixes #1144 by prefacing the unused param with _.

@@ -204,7 +204,7 @@ export function freeze<T>(obj: any, deep: boolean = false): T {
if (deep)
// See #590, don't recurse into non-enumerable / Symbol properties when freezing
// So use Object.entries (only string-like, enumerables) instead of each()
Object.entries(obj).forEach(([key, value]) => freeze(value, true))
Object.entries(obj).forEach(([_key, value]) => freeze(value, true))
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like this could be just Object.values which is probably faster and also skips the arg destructuring :)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated!

@coveralls
Copy link

coveralls commented Sep 17, 2024

Pull Request Test Coverage Report for Build 10910430741

Details

  • 1 of 1 (100.0%) changed or added relevant line in 1 file are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 99.794%

Totals Coverage Status
Change from base Build 8862275405: 0.0%
Covered Lines: 649
Relevant Lines: 650

💛 - Coveralls

Copy link
Collaborator

@mweststrate mweststrate left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is great, thanks!

@mweststrate mweststrate merged commit 19cbe47 into immerjs:main Sep 19, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

TypeScript error: 'key' is declared but its value is never read
3 participants