Checks if passed string contains alphabets, digits and vocabulary
npm install is-alphabetChecks whether passed string contains alphabets, digits and vocabulory.
bash
npm i is-alphabet --save
`Usage
`js
const isAlpha = require('is-alphabet');if(isAlpha('Some string with english alphabets')) {
console.log('pure english');
}
`
Development
`bash
npm i
npm test
``