UNPKG

@martijnnieuwenhuizen/generate-component

Version:
8 lines (7 loc) 180 B
/** * Check if the first letter of the word is a Capital. * * @param {string} str * @returns boolean */ export default (str) => str.charAt(0) === str.charAt(0).toUpperCase();