update, text, response
This commit is contained in:
8
node_modules/fast-glob/README.md
generated
vendored
8
node_modules/fast-glob/README.md
generated
vendored
@@ -272,10 +272,10 @@ Returns the path with escaped special characters depending on the platform.
|
||||
* `@+!` before the opening parenthesis;
|
||||
* `\\` before non-special characters;
|
||||
* Windows:
|
||||
* `(){}`
|
||||
* `(){}[]`
|
||||
* `!` at the beginning of line;
|
||||
* `@+!` before the opening parenthesis;
|
||||
* Characters like `*?|[]` cannot be used in the path ([windows_naming_conventions][windows_naming_conventions]), so they will not be escaped;
|
||||
* Characters like `*?|` cannot be used in the path ([windows_naming_conventions][windows_naming_conventions]), so they will not be escaped;
|
||||
|
||||
```js
|
||||
fg.escapePath('!abc');
|
||||
@@ -294,7 +294,7 @@ fg.win32.escapePath('C:\\Program Files (x86)\\**\\*');
|
||||
Converts a path to a pattern depending on the platform, including special character escaping.
|
||||
|
||||
* Posix. Works similarly to the `fg.posix.escapePath` method.
|
||||
* Windows. Works similarly to the `fg.win32.escapePath` method, additionally converting backslashes to forward slashes in cases where they are not escape characters (`!()+@{}`).
|
||||
* Windows. Works similarly to the `fg.win32.escapePath` method, additionally converting backslashes to forward slashes in cases where they are not escape characters (`!()+@{}[]`).
|
||||
|
||||
```js
|
||||
fg.convertPathToPattern('[OpenSource] mrmlnc – fast-glob (Deluxe Edition) 2014') + '/*.flac';
|
||||
@@ -394,7 +394,7 @@ Indicates whether to traverse descendants of symbolic link directories when expa
|
||||
* Type: `FileSystemAdapter`
|
||||
* Default: `fs.*`
|
||||
|
||||
Custom implementation of methods for working with the file system.
|
||||
Custom implementation of methods for working with the file system. Supports objects with enumerable properties only.
|
||||
|
||||
```ts
|
||||
export interface FileSystemAdapter {
|
||||
|
||||
Reference in New Issue
Block a user