Requester.prototype.removeData = function(key){
  delete this.data[key];
  this.data.splice(1,1);
  return this;
};