Javascript String humpToHyphen()
humpToHyphen()
String.prototype.humpToHyphen = function () { return this.replace(/([A-Z])/g, "-$1").toLowerCase() }