Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature request: isAlpha #21

Closed
vorillaz opened this issue Oct 20, 2019 · 5 comments
Closed

Feature request: isAlpha #21

vorillaz opened this issue Oct 20, 2019 · 5 comments
Labels
enhancement New feature or request good first issue Good for newcomers

Comments

@vorillaz
Copy link
Contributor

Checks whether the input text contains only alpha characters.

Example usage

import isAlpha from '@plexis/is-alpha';

isAlpha('ABCD');
// => true

isAlpha('Apollo11');
// => false

isEmpty('1');
// => false

isEmpty('Hello,world');
// => false

isAlpha('');
// => false

isEmpty('   ');
// => false

Aliases

import isAlpha from '@plexis/is-alpha';
import {isAlpha} from 'plexis';
@vorillaz vorillaz added enhancement New feature or request good first issue Good for newcomers labels Oct 20, 2019
@RobFairclough
Copy link
Contributor

Love this idea, I'll give it a shot!

@vorillaz
Copy link
Contributor Author

@RobFairclough 💪 Let's do this!

@ThakurKarthik
Copy link

@RobFairclough are you working on this?

@RobFairclough
Copy link
Contributor

@ThakurKarthik Yes, pull request here #28 - just waiting for re-review after some version/alphabetising changes.

@vorillaz
Copy link
Contributor Author

@RobFairclough The PR was merged, thanks :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

3 participants