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