Skip to content

Commit ad3904d

Browse files
committed
update readme with posix class support
1 parent b22fc7d commit ad3904d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Match files using the patterns the shell uses.
44

55
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
77
Implementations** at the bottom of this readme.)
88

99
![a fun cartoon logo made of glob characters](logo/glob.png)
@@ -418,10 +418,10 @@ expanded **first** into the set of `+(a|b)` and `+(a|c)`, and
418418
those patterns are checked for validity. Since those two are
419419
valid, matching proceeds.
420420

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.
425425

426426
### Repeated Slashes
427427

@@ -569,7 +569,7 @@ npm run prof
569569
There are some other glob matcher libraries on npm, but these
570570
three are (in my opinion, as of 2023) the best.
571571

572-
----
572+
---
573573

574574
**full explanation**
575575

@@ -623,7 +623,7 @@ Former versions of this module are far too slow for any cases
623623
where performance matters at all, and were designed with APIs
624624
that are extremely dated by current JavaScript standards.
625625

626-
----
626+
---
627627

628628
<small id="fn-webscale">[1]: In the cases where this module
629629
returns results and `fast-glob` doesn't, it's even faster, of

0 commit comments

Comments
 (0)