Method: String#upcase?
- Defined in:
- lib/core/facets/string/capitalized.rb
#upcase? ⇒ Boolean
Is the string upcase/uppercase?
"THIS".upcase? #=> true
"This".upcase? #=> false
"this".upcase? #=> false
CREDIT: Phil Tomson
41 42 43 |
# File 'lib/core/facets/string/capitalized.rb', line 41 def upcase? upcase == self end |