class IRB::Context

def transform_args?(command)

Return true if the command supports transforming args
def transform_args?(command)
  command = command_aliases.fetch(command.to_sym, command)
  ExtendCommandBundle.load_command(command)&.respond_to?(:transform_args)
end