Skip to content

Commit

Permalink
fix typos + remove one benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
aleclarson committed Aug 16, 2024
1 parent c5de4f5 commit db1c876
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions benchmarks/string/pascal.bench.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,10 @@ describe('pascal', () => {
bench('with valid input', () => {
_.pascal('hello world')
})
bench('wiht camelCase input', () => {
bench('with camelCase input', () => {
_.pascal('fooBar')
})
bench('with non alphanumerics', () => {
_.pascal('Exobase Starter_flash AND-go')
})
bench('With null input', () => {
_.pascal(null as any)
})
})

0 comments on commit db1c876

Please sign in to comment.