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

enhancement: toHyphenCase() convert space to camelCase #9

Closed
Soecka opened this issue Jul 17, 2022 · 1 comment · Fixed by #10
Closed

enhancement: toHyphenCase() convert space to camelCase #9

Soecka opened this issue Jul 17, 2022 · 1 comment · Fixed by #10
Labels
bug Something isn't working

Comments

@Soecka
Copy link
Contributor

Soecka commented Jul 17, 2022

In toHyphenCase, I cann't convert to 'socia media' to 'socia-media'
data.ts:32
maybe we can polish the pattern of the regExp

function toHyphenCase(raw:string) {
  return raw.replace(
      /[A-Z]+|[^A-Za-z][A-Za-z]/g,
      (match, offset) => `${offset ? '-' : ''}${(match[1]||match[0]).toLowerCase()}`
  );
}
@TechQuery
Copy link
Member

A pull request is welcomed.

@TechQuery TechQuery added the bug Something isn't working label Jul 17, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants