RyanofWoods/rails-react-swedish-birds

View on GitHub
app/javascript/react_app/helpers/string_helpers.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const capitalize = (string: string): string => (
  string.charAt(0).toUpperCase() + string.slice(1).toLowerCase()
)