UNPKG

create-react-component-folder-jovpet

Version:

Creates single react component folder structure. Forked version with enhanced scss

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