%PDF- %PDF-
| Direktori : /var/www/projetos/stb.ind.br/wp-content/themes/stb/node_modules/underscore.string/ |
| Current File : /var/www/projetos/stb.ind.br/wp-content/themes/stb/node_modules/underscore.string/humanize.js |
var capitalize = require('./capitalize');
var underscored = require('./underscored');
var trim = require('./trim');
module.exports = function humanize(str) {
return capitalize(trim(underscored(str).replace(/_id$/, '').replace(/_/g, ' ')));
};