CookieStorage.prototype.removeCookie = function (name) {
  type('name', name, 'String');
  return this._requestJSON('DELETE', '/' + name);
};