|
3 | 3 | Match files using the patterns the shell uses. |
4 | 4 |
|
5 | 5 | The most correct and second fastest glob implementation in |
6 | | -JavaScript. (See **Comparison to Other JavaScript Glob |
| 6 | +JavaScript. (See **Comparison to Other JavaScript Glob |
7 | 7 | Implementations** at the bottom of this readme.) |
8 | 8 |
|
9 | 9 |  |
@@ -418,10 +418,10 @@ expanded **first** into the set of `+(a|b)` and `+(a|c)`, and |
418 | 418 | those patterns are checked for validity. Since those two are |
419 | 419 | valid, matching proceeds. |
420 | 420 |
|
421 | | -The character class patterns `[:class:]` (POSIX standard named |
422 | | -classes), `[=c=]` (locale-specific character collation weight), |
423 | | -and `[.symbol.]` (collating symbol) style class patterns are |
424 | | -_not_ supported by this implementation at this time. |
| 421 | +The character class patterns `[:class:]` (posix standard named |
| 422 | +classes) style class patterns are supported and unicode-aware, |
| 423 | +but `[=c=]` (locale-specific character collation weight), and |
| 424 | +`[.symbol.]` (collating symbol), are not. |
425 | 425 |
|
426 | 426 | ### Repeated Slashes |
427 | 427 |
|
@@ -569,7 +569,7 @@ npm run prof |
569 | 569 | There are some other glob matcher libraries on npm, but these |
570 | 570 | three are (in my opinion, as of 2023) the best. |
571 | 571 |
|
572 | | ----- |
| 572 | +--- |
573 | 573 |
|
574 | 574 | **full explanation** |
575 | 575 |
|
@@ -623,7 +623,7 @@ Former versions of this module are far too slow for any cases |
623 | 623 | where performance matters at all, and were designed with APIs |
624 | 624 | that are extremely dated by current JavaScript standards. |
625 | 625 |
|
626 | | ----- |
| 626 | +--- |
627 | 627 |
|
628 | 628 | <small id="fn-webscale">[1]: In the cases where this module |
629 | 629 | returns results and `fast-glob` doesn't, it's even faster, of |
|
0 commit comments