@datagica/parse-questions
v0.0.0
Published
Parse questions
Downloads
7
Readme
parse questions
A lightweight question parser.
Important
Only use non-matching groups in the patterns/*.js modules
Be careful of the order of patterns
for instance if you add this pattern:
links?|linked
this will never match "linked", as it finds "link*" first. So instead do:
linked|links?