How to use the capitalize function from underscore
Find comprehensive JavaScript underscore.capitalize code examples handpicked from public code repositorys.
149 150 151 152 153 154 155 156 157 158
return (str); } filters.capitalise = function (str) { var _ = require('lodash'); str = _.capitalize(str); return (str); } filters.title_case = function (str) {
0
2
1
+ 2 other calls in file
underscore.keys is the most popular function in underscore (11266 examples)