module RuboCop::Cop::Util

def escape_string(string)

def escape_string(string)
  string.inspect[1..-2].tap { |s| s.gsub!(/\\"/, '"') }
end