module Byebug::Helpers::StringHelper

def deindent(str, leading_spaces: 6)

Other tags:
    Note: - Might be unnecessary when Ruby 2.2 support is dropped and we can
def deindent(str, leading_spaces: 6)
  str.gsub(/^ {#{leading_spaces}}/, "")
end