UNPKG

coffee-toaster

Version:

Minimalist build system for CoffeeScript.

12 lines (8 loc) 266 B
class StringUtil @titleize:(str)-> words = str.match /[a-z]+/gi words[index] = StringUtil.ucasef word for word, index in words words.join " " @ucasef:(str)-> output = str.substr( 0, 1).toUpperCase() output += str.substr( 1 ).toLowerCase()