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

⚡️ Switch from Object.keys to for..in in record #1265

Merged
merged 1 commit into from
Dec 16, 2020
Merged

Conversation

dubzzz
Copy link
Owner

@dubzzz dubzzz commented Dec 16, 2020

In a nutshell

The Object.keys() method returns an array of a given object's own enumerable properties, in the same order as that provided by a for...in loop (the difference being that a for-in loop enumerates properties in the prototype chain as well).
From https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/keys

Very slight improvement expected as it will do less allocations. Measurements detected no major change.

❌ New feature
❌ Fix an issue
❌ Documentation improvement
✔️ Other: performance records

(✔️: yes, ❌: no)

Potential impacts

Record

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
@codesandbox-ci
Copy link

This pull request is automatically built and testable in CodeSandbox.

To see build info of the built libraries, click here or the icon next to each commit SHA.

Latest deployment of this branch, based on commit b838206:

Sandbox Source
Vanilla Configuration
fast-check-examples Configuration

@dubzzz dubzzz merged commit 40bbf31 into master Dec 16, 2020
@dubzzz dubzzz deleted the perf-record branch December 16, 2020 22:05
@dubzzz
Copy link
Owner Author

dubzzz commented Jan 7, 2021

Change more or less reverted by #1321

@dubzzz
Copy link
Owner Author

dubzzz commented Jan 7, 2021

Moreover this change was problematic as it iterated over illegal keys (keys coming from the prototype chain)

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.

None yet

1 participant