Sha256: f583de2f27602b83ed3954c1060acc9b7f671eb75e36573e11a8cad859423fd4
Contents?: true
Size: 315 Bytes
Versions: 69
Compression:
Stored size: 315 Bytes
Contents
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; });
Version data entries
69 entries across 69 versions & 2 rubygems