We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
underscore function will always alter variable assigments True/False, like so:
>>> inflection.underscore("snakeCase = True") 'snake_case = true'
i think it would make sense to have something like uppercase_first_letter here too?
The text was updated successfully, but these errors were encountered:
Same with their examples like
camelize('active_model/errors') => "ActiveModel::Errors"
>>> camelize('active_model/errors') 'ActiveModel/error'
I however would expect 'ActiveModel/Error' with an capital E here.
'ActiveModel/Error'
E
Sorry, something went wrong.
No branches or pull requests
underscore function will always alter variable assigments True/False, like so:
i think it would make sense to have something like uppercase_first_letter here too?
The text was updated successfully, but these errors were encountered: