module Sinatra::Helpers

def bad_request?

whether or not the status is set to 400
def bad_request?
  status == 400
end