module Sinatra::Helpers

def redirect?

whether or not the status is set to 3xx
def redirect?
  status.between? 300, 399
end