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

feat: simplify isArray: clsx.apply #55

Closed
wants to merge 1 commit into from
Closed

Conversation

yangg
Copy link

@yangg yangg commented Oct 26, 2022

No description provided.

@lukeed
Copy link
Owner

lukeed commented Oct 26, 2022

While less code, this is almost certainly slower. Function lookups/executions aren’t free. Will perf test when have some spare time

@lukeed
Copy link
Owner

lukeed commented Mar 23, 2023

Confirmed. On Node 18.12.1, these are the Array-related benchmark results:

# Arrays
  clsx         x 10,514,890 ops/sec ±0.14% (101 runs sampled)
  clsx (apply) x  9,399,861 ops/sec ±0.18% (99 runs sampled)

# Nested Arrays
  clsx         x 8,326,852 ops/sec ±0.39% (98 runs sampled)
  clsx (apply) x 6,989,572 ops/sec ±0.14% (99 runs sampled)

# Nested Arrays w/ Objects
  clsx         x 8,458,578 ops/sec ±0.17% (97 runs sampled)
  clsx (apply) x 7,853,655 ops/sec ±0.17% (100 runs sampled)

# Mixed
  clsx         x 9,369,221 ops/sec ±0.29% (100 runs sampled)
  clsx (apply) x 8,903,049 ops/sec ±0.13% (100 runs sampled)

# Mixed (Bad Data)
  clsx         x 3,654,474 ops/sec ±0.42% (97 runs sampled)
  clsx (apply) x 3,554,495 ops/sec ±0.33% (100 runs sampled)

The clsx (apply) – which is this PR – is slower in every suite

Thank you for the PR though! Was a good idea :D

@lukeed lukeed closed this Mar 23, 2023
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.

2 participants