Method: String#prechop

Defined in:
lib/gonzui/util.rb

#prechopObject



123
124
125
126
127
128
129
# File 'lib/gonzui/util.rb', line 123

def prechop
  if m = /^./m.match(self)
    return m.post_match
  else
    return ""
  end
end