Skip to content

Instantly share code, notes, and snippets.

View smokku's full-sized avatar

Tomasz Sterna smokku

View GitHub Profile
@smokku
smokku / webpack.config.js
Created September 28, 2015 10:17
node-proxy capitalize lower case headers
var http = require('http');
var setHeader = http.OutgoingMessage.prototype.setHeader;
http.OutgoingMessage.prototype.setHeader = function() {
var match, submatch;
arguments[0] = arguments[0].replace(/\b(\w)/g, function(match, submatch) {
return submatch ? submatch.toUpperCase() : "";
});
setHeader.apply(this, arguments);
};