class Sinatra::Cookies::Jar

def shift

def shift
  key, value = to_hash.shift
  delete(key)
  [key, value]
end