UNPKG

@newrelic/gatsby-theme-newrelic

Version:

[![Community Project header](https://github.com/newrelic/opensource-website/raw/master/src/images/categories/Community_Project.png)](https://opensource.newrelic.com/oss-category/#community-project)

7 lines (6 loc) 212 B
export const titleCaseify = (word) => { let capitalizedWord = word.split(''); capitalizedWord[0] = capitalizedWord[0].toUpperCase(); capitalizedWord = capitalizedWord.join(''); return capitalizedWord; };