UNPKG

4.2 kBMarkdownView Raw
1<p align="center">
2 <a href="https://gulpjs.com">
3 <img height="257" width="114" src="https://raw.githubusercontent.com/gulpjs/artwork/master/gulp-2x.png">
4 </a>
5</p>
6
7# glob-parent
8
9[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status][ci-image]][ci-url] [![Coveralls Status][coveralls-image]][coveralls-url]
10
11Extract the non-magic parent path from a glob string.
12
13## Usage
14
15```js
16var globParent = require('glob-parent');
17
18globParent('path/to/*.js'); // 'path/to'
19globParent('/root/path/to/*.js'); // '/root/path/to'
20globParent('/*.js'); // '/'
21globParent('*.js'); // '.'
22globParent('**/*.js'); // '.'
23globParent('path/{to,from}'); // 'path'
24globParent('path/!(to|from)'); // 'path'
25globParent('path/?(to|from)'); // 'path'
26globParent('path/+(to|from)'); // 'path'
27globParent('path/*(to|from)'); // 'path'
28globParent('path/@(to|from)'); // 'path'
29globParent('path/**/*'); // 'path'
30
31// if provided a non-glob path, returns the nearest dir
32globParent('path/foo/bar.js'); // 'path/foo'
33globParent('path/foo/'); // 'path/foo'
34globParent('path/foo'); // 'path' (see issue #3 for details)
35```
36
37## API
38
39### `globParent(maybeGlobString, [options])`
40
41Takes a string and returns the part of the path before the glob begins. Be aware of Escaping rules and Limitations below.
42
43#### options
44
45```js
46{
47 // Disables the automatic conversion of slashes for Windows
48 flipBackslashes: true;
49}
50```
51
52## Escaping
53
54The following characters have special significance in glob patterns and must be escaped if you want them to be treated as regular path characters:
55
56- `?` (question mark) unless used as a path segment alone
57- `*` (asterisk)
58- `|` (pipe)
59- `(` (opening parenthesis)
60- `)` (closing parenthesis)
61- `{` (opening curly brace)
62- `}` (closing curly brace)
63- `[` (opening bracket)
64- `]` (closing bracket)
65
66**Example**
67
68```js
69globParent('foo/[bar]/'); // 'foo'
70globParent('foo/\\[bar]/'); // 'foo/[bar]'
71```
72
73## Limitations
74
75### Braces & Brackets
76
77This library attempts a quick and imperfect method of determining which path
78parts have glob magic without fully parsing/lexing the pattern. There are some
79advanced use cases that can trip it up, such as nested braces where the outer
80pair is escaped and the inner one contains a path separator. If you find
81yourself in the unlikely circumstance of being affected by this or need to
82ensure higher-fidelity glob handling in your library, it is recommended that you
83pre-process your input with [expand-braces] and/or [expand-brackets].
84
85### Windows
86
87Backslashes are not valid path separators for globs. If a path with backslashes
88is provided anyway, for simple cases, glob-parent will replace the path
89separator for you and return the non-glob parent path (now with
90forward-slashes, which are still valid as Windows path separators).
91
92This cannot be used in conjunction with escape characters.
93
94```js
95// BAD
96globParent('C:\\Program Files \\(x86\\)\\*.ext'); // 'C:/Program Files /(x86/)'
97
98// GOOD
99globParent('C:/Program Files\\(x86\\)/*.ext'); // 'C:/Program Files (x86)'
100```
101
102If you are using escape characters for a pattern without path parts (i.e.
103relative to `cwd`), prefix with `./` to avoid confusing glob-parent.
104
105```js
106// BAD
107globParent('foo \\[bar]'); // 'foo '
108globParent('foo \\[bar]*'); // 'foo '
109
110// GOOD
111globParent('./foo \\[bar]'); // 'foo [bar]'
112globParent('./foo \\[bar]*'); // '.'
113```
114
115## License
116
117ISC
118
119<!-- prettier-ignore-start -->
120[downloads-image]: https://img.shields.io/npm/dm/glob-parent.svg?style=flat-square
121[npm-url]: https://www.npmjs.com/package/glob-parent
122[npm-image]: https://img.shields.io/npm/v/glob-parent.svg?style=flat-square
123
124[ci-url]: https://github.com/gulpjs/glob-parent/actions?query=workflow:dev
125[ci-image]: https://img.shields.io/github/workflow/status/gulpjs/glob-parent/dev?style=flat-square
126
127[coveralls-url]: https://coveralls.io/r/gulpjs/glob-parent
128[coveralls-image]: https://img.shields.io/coveralls/gulpjs/glob-parent/master.svg?style=flat-square
129<!-- prettier-ignore-end -->
130
131<!-- prettier-ignore-start -->
132[expand-braces]: https://github.com/jonschlinkert/expand-braces
133[expand-brackets]: https://github.com/jonschlinkert/expand-brackets
134<!-- prettier-ignore-end -->