Object
Improvements to the String class.
String
@author Arcterus @version 2012-09-11
Determines whether the String is entirely blank.
@return [Boolean] whether or not the String is blank
# File lib/format.rb, line 13 def is_space self =~ /^[[:blank:]]+$/ ? true : false end