@plexis/is-alpha

Check whether a string contains only alpha characters.

Usage no npm install needed!

<script type="module">
  import plexisIsAlpha from 'https://cdn.skypack.dev/@plexis/is-alpha';
</script>

README

@plexis/isAlpha

Check whether a string contains only alpha characters.

Installation npm i @plexis/is-alpha

Usage

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

isAlpha('Foo Bar'); // returns false
isAlpha('FooBar'); // returns true
isAlpha('f00b4r'); // returns false

Aliases

import {isAlpha} from 'plexis';