Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: gruhn/regex-utils
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.7.1
Choose a base ref
...
head repository: gruhn/regex-utils
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.7.2
Choose a head ref
  • 2 commits
  • 5 files changed
  • 1 contributor

Commits on Oct 4, 2025

  1. fix(toString): lower bounds are mandatorty

    In the JavaScript regex flavor /a{,3}/ does NOT mean zero-or-more a's.
    It's interpreted as the literal string "a{,3}". Hence, the lower bound
    must be set to 0 explicitly if not present.
    gruhn committed Oct 4, 2025
    Configuration menu
    Copy the full SHA
    5b5a8da View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2025

  1. perf(toString): no bounds when duplication is shorter

    E.g. render `a{3}` as `aaa` because it's shorter.
    gruhn committed Oct 5, 2025
    Configuration menu
    Copy the full SHA
    a146f14 View commit details
    Browse the repository at this point in the history
Loading