UNPKG

reactizzen

Version:

Creates single react component folder structure with multiple flags, upgraded version of not maintained anymore create-react-folder-component library.

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;