Skip to content

Commit 9bc5b6f

Browse files
committed
removed extra self, updated colors requirement, bumped to version 0.1.3
1 parent c8dd8c4 commit 9bc5b6f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

lib/node-http-proxy.js

-2
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ var sys = require('sys'),
2929
events = require('events');
3030

3131
exports.httpProxy = function () {
32-
var self = this;
3332
this.emitter = new(events.EventEmitter);
34-
3533
// If we were passed more than two arguments,
3634
// assume the first two are request and response.
3735
if(arguments.length >= 2) {

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "http-proxy",
33
"description": "A full-featured http reverse proxy for node.js",
4-
"version": "0.1.2",
4+
"version": "0.1.3",
55
"author": "Charlie Robbins <[email protected]>",
66
"contributors": [
77
{ "name": "Marak Squires", "email": "[email protected]" }
88
],
99
"keywords": ["reverse", "proxy", "http"],
1010
"dependencies": {
11-
"colors": ">= 0.0.1"
11+
"colors": ">= 0.0.3"
1212
},
1313
"main": "./lib/node-http-proxy",
1414
"scripts": { "test": "vows" },

0 commit comments

Comments
 (0)