Open sebastianramirez-natgeo opened 6 years ago
@sebastianramirez-natgeo you can capitalize the variables on lz with the lodash capitalize method that is included.
<%= _(foo).capitalize() %>
also you can apply inflection thanks to https://www.npmjs.com/package/lodash-inflection (included)
<%= _(foo).pluralize() %>
even mixed
<%= _(moduleName).pluralize().capitalize() %>
Or any other lodash method like:
cool!, i'll take a look into it
I have the follow scenario
However i want to keep it simple just using capitalize instead all stuff there
Thanks