glob-path-regex
Regular expression for matching the parts of glob pattern.
Last updated 11 years ago by jonschlinkert .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install glob-path-regex 
SYNC missed versions from official npm registry.

glob-path-regex NPM version

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'

Match groups

  • [0]: full path (a/b/{f,g}/**/*.min.js)
  • [1]: dirname (a/b/{f,g}/**/)
  • [2]: basename (with ext) (*.min.js)
  • [3]: filename (no ext) (*)
  • [4]: multi-extensions or extname (.min.js)
  • [5]: extname (with dot) (.js)
  • [6]: ext (no dot) (js)

Run tests

Install dev dependencies:

node i -d && mocha

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.

Current Tags

  • 1.0.0                                ...           latest (11 years ago)

1 Versions

  • 1.0.0                                ...           11 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 1
Dependencies (0)
None
Dev Dependencies (1)
Dependents (2)

Copyright 2013 - present © cnpmjs.org | Home |