UNPKG

generator-itworxhub

Version:

Tool to help the front-end developer at ITWORX HUB Team to save his time by scaffolding the repetitive tasks

5 lines (4 loc) 159 B
function capitalizeFirstLetter(string) { return string.charAt(0).toUpperCase() + string.slice(1); } exports.capitalizeFirstLetter = capitalizeFirstLetter;