SessionStorage.prototype.removeItem = function (key) {
  type('key', key, 'String');
  return this._requestJSON('DELETE', '/key/' + key);
};