oxc/crates/oxc_codegen
DonIsaac 7585e16beb perf(linter): remove allocations for string comparisons (#4570)
Refactors a lot of case-insensitive comparisons from
```rust
a.to_lowercase() == b.to_lowercase()
```

with
```rust
a.eq_ignore_ascii_case(b)
```

These mostly happened when checking JSX props, so I'm expecting the most benefit from JSX-related rules.
2024-07-31 00:24:12 +00:00
..
examples refactor(sourcemap)!: avoid passing Results (#4541) 2024-07-30 04:23:49 +00:00
src perf(linter): remove allocations for string comparisons (#4570) 2024-07-31 00:24:12 +00:00
tests/integration feat(codegen): align more esbuild implementations (#4510) 2024-07-28 13:35:37 +00:00
Cargo.toml Release crates v0.22.1 (#4508) 2024-07-28 09:58:29 +08:00
CHANGELOG.md Release crates v0.22.0 (#4434) 2024-07-24 08:23:27 +08:00