neocities/ext/string.rb
2014-05-30 21:18:55 -07:00

5 lines
67 B
Ruby

class String
def empty?
strip == '' ? true : false
end
end