module Sinatra::Helpers

def success?

whether or not the status is set to 2xx
def success?
  status.between? 200, 299
end