# File lib/core/facets/string/chomp.rb, line 25
  def lchomp!(match)
    if index(match) == 0
      self[0...match.size] = ''
      self
    end
  end