UNPKG

create-react-component-folder

Version:
12 lines (10 loc) 196 B
/** * Matches only alphabetic character * * @param {String} str * @param {Boolean} */ function isLetter(str) { return str.length === 1 && str.match(/[A-z]/i); } module.exports = isLetter;