module RuboCop::Cop::LineLengthHelp

def indentation_difference(line)

def indentation_difference(line)
  return 0 unless tab_indentation_width
  index =
    if line.match?(/^[^\t]/)
      0
    else
      line.index(/[^\t]/) || 0
    end
  index * (tab_indentation_width - 1)
end