Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
lib-ical
cda273822f22b5396dbd1708643c3f324bdea0b4
cda273822f22b5396dbd1708643c3f324bdea0b4
Switch branch/tag
lib-ical
src
util.ts
Find file
Normal view
History
Permalink
util.ts
89 Bytes
Edit
Web IDE
Newer
Older
Add the first class!
Mark Stenglein
committed
Feb 17, 2017
1
2
3
export
function
isAlpha
(
input
:
string
):
boolean
{
return
/^
[
a-zA-Z
]
+$/
.
test
(
input
);
}