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
@boazrymland
boazrymland / unCamelCase.js
Created May 15, 2017 07:54 — forked from mattwiebe/unCamelCase.js
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')