Skip to content

Instantly share code, notes, and snippets.

View boazrymland's full-sized avatar
👨‍💻
mostly coding

Boaz Rymland boazrymland

👨‍💻
mostly coding
View GitHub Profile
@mattwiebe
mattwiebe / unCamelCase.js
Created June 3, 2011 05:27
unCamelCase.js
/**
* Turns someCrazyName into Some Crazy Name
* Decent job of acroynyms:
* ABCAcryonym => ABC Acryoynm
* xmlHTTPRequest => Xml HTTP Request
*/
String.prototype.unCamelCase = function(){
return this
// insert a space between lower & upper
.replace(/([a-z])([A-Z])/g, '$1 $2')