url_pattern_matcher
v1.0.1
Published
Returns whether the url pattern is matched or not
Downloads
7
Maintainers
Readme
Url-Pattern-Matcher
Returns whether the url pattern is matched or not
npm i url_pattern_matcher --save
npm stats
Usage example(s)
var matcher = require('url_pattern_matcher')
matcher.matches("/profile/:name","/profile/anyname")
=>true
matcher.matches("/profile/name","/profile/anyname")
=>false
matcher.matches("/user/:userid/message/:messageid","/user/azyeid/message/72839203784")
=>true