UNPKG

bower

Version:

The browser package manager

12 lines (10 loc) 315 B
define(['../lang/toString', './lowerCase', './upperCase'], function(toString, lowerCase, upperCase){ /** * UPPERCASE first char of each word. */ function properCase(str){ str = toString(str); return lowerCase(str).replace(/^\w|\s\w/g, upperCase); } return properCase; });