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
Hi, thank you for this awesome plugin!
I just noticed ucfirst filter doesn't work with fully capitalized string.
Expected behavior: hello leo => Hello Leo HELLO LEO => Hello Leo
Current behavior: hello leo => Hello Leo HELLO LEO => HELLO LEO
The text was updated successfully, but these errors were encountered:
I think the ucfirst only capitalize first character in each string and return the rest as it is.
ucfirst
angular-filter/dist/angular-filter.js
Line 2081 in 0bc1607
<p> {{ 'foo bar baz' | ucfirst }}</p> <!-- result: Foo Bar Baz -->
Sorry, something went wrong.
No branches or pull requests
Hi, thank you for this awesome plugin!
I just noticed ucfirst filter doesn't work with fully capitalized string.
Expected behavior:
hello leo => Hello Leo
HELLO LEO => Hello Leo
Current behavior:
hello leo => Hello Leo
HELLO LEO => HELLO LEO
The text was updated successfully, but these errors were encountered: