module Sinatra::Helpers

def informational?

whether or not the status is set to 1xx
def informational?
  status.between? 100, 199
end