0.0.0 • Published 7 years ago

@datagica/parse-questions v0.0.0

Weekly downloads
1
License
GPL-3.0
Repository
bitbucket
Last release
7 years ago

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?