Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/rubocop/core_ext/string.rb
Overview
Extensions to the core String class
Instance Method Summary collapse
-
#blank? ⇒ Boolean
Checks whether a string is blank.
Instance Method Details
#blank? ⇒ Boolean
Checks whether a string is blank. A string is considered blank if it is either empty or contains only whitespace characters.
19 20 21 |
# File 'lib/rubocop/core_ext/string.rb', line 19 def blank? empty? || strip.empty? end |