Skip to content

Commit 5097aed

Browse files
committedJan 3, 2023
chore: Remove the order negation wording in docs
1 parent c92aa14 commit 5097aed

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed
 

‎README.md

-20
Original file line numberDiff line numberDiff line change
@@ -95,26 +95,6 @@ Default: `'path'`
9595

9696
Any glob-related options are documented in [picomatch][picomatch-options-url].
9797

98-
#### Globbing & Negation
99-
100-
```js
101-
var stream = gs(['./**/*.js', '!./node_modules/**/*']);
102-
```
103-
104-
Globs are executed in order, so negations should follow positive globs. For example:
105-
106-
The following would **not** exclude any files:
107-
108-
```js
109-
gs(['!b*.js', '*.js']);
110-
```
111-
112-
However, this would exclude all files that started with `b`:
113-
114-
```js
115-
gs(['*.js', '!b*.js']);
116-
```
117-
11898
## License
11999

120100
MIT

0 commit comments

Comments
 (0)
Please sign in to comment.