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
867935a0023e091993fae4b17811e38b604ee9af
867935a0023e091993fae4b17811e38b604ee9af
Switch branch/tag
lib-ical
src
util.ts
Find file
Normal view
History
Permalink
util.ts
90 Bytes
Edit
Web IDE
Newer
Older
Add the first class!
Mark Stenglein
committed
Feb 17, 2017
1
2
export
function
isAlpha
(
input
:
string
):
boolean
{
return
/^
[
a-zA-Z
]
+$/
.
test
(
input
);
Implement Test Driven Development!!!!!
Mark Stenglein
committed
Feb 17, 2017
3
}