0.0.0 • Published 10 years ago

bloody-matchpath v0.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

match-path

https://travis-ci.org/bloodyowl/match-path

install

$ npm install bloody-matchpath

require

var matchPath = require("bloody-matchpath")

api

matchPath(string, matcher) > Boolean

checks string using the matcher pattern.

patterns

"foo.*.bar"
// matches
"foo.bar.bar"
// but not
"foo.bar.baz.bar"

"foo.**.bar"
// matches both
"foo.bar.bar"
// and
"foo.bar.baz.bar"
0.0.0

10 years ago