Home

Awesome

glob-path-regex NPM version Build Status

Regular expression for matching the parts of glob pattern.

Install with npm

npm i glob-path-regex --save

Usage

var re = require('glob-path-regex');

'a/b.c/d/e.min.js'.match(re());

//=> [0] 'a/b/{f,g}/**/*.min.js'
//=> [1] 'a/b/{f,g}/**/'
//=> [2] '*.min.js'
//=> [3] '*'
//=> [4] '.min.js'
//=> [5] '.js'
//=> [6] 'js'

Regular expression visualization

Match groups

Run tests

Install dev dependencies:

npm i -d && npm test

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue

Author

Jon Schlinkert

License

Copyright (c) 2015 Jon Schlinkert
Released under the MIT license


This file was generated by verb on January 20, 2015.