module Roda::RodaPlugins::SinatraHelpers::ResponseMethods

def redirect?

Whether or not the status is set to 3xx. Returns nil if status not yet set.
def redirect?
  @status.between?(300, 399) if @status
end