I am relatively new to Meteor (and really like it -- thank you! framework authors).
My question is about the check package: Is there a way to call check with a RegEx pattern to validate input? I read all of the documentation for the package at the link I provided; the word "pattern" is mentioned several times, but (afaik) it was not meant to refer to a regular expression pattern.
I'm hoping I am missing something, and someone will be able to point me to a way to implement a check()
call that uses a regular expression to validate a string.
Match.Error
you could easily implement your own version that checks a regex. – Quaternary