module Roda::RodaPlugins::SinatraHelpers::ResponseMethods

def informational?

Whether or not the status is set to 1xx. Returns nil if status not yet set.
def informational?
  @status.between?(100, 199) if @status
end