instance method String#blank

View source on GitHub →

String#blank() → Boolean

Check if the string is "blank" — either empty (length of 0) or containing only whitespace.

Example
''.blank();
//-> true
 '  '.blank();
//-> true
 ' a '.blank();
//-> false