Merge pull request #94 from peterblazejewicz/patch-1 · micromatch/picomatch@f81d236

@@ -312,7 +312,7 @@ The following options may be used with the main `picomatch()` function or any of

312312

| `expandRange` | `function` | `undefined` | Custom function for expanding ranges in brace patterns, such as `{a..z}`. The function receives the range values as two arguments, and it must return a string to be used in the generated regex. It's recommended that returned strings be wrapped in parentheses. |

313313

| `failglob` | `boolean` | `false` | Throws an error if no matches are found. Based on the bash option of the same name. |

314314

| `fastpaths` | `boolean` | `true` | To speed up processing, full parsing is skipped for a handful common glob patterns. Disable this behavior by setting this option to `false`. |

315-

| `flags` | `boolean` | `undefined` | Regex flags to use in the generated regex. If defined, the `nocase` option will be overridden. |

315+

| `flags` | `string` | `undefined` | Regex flags to use in the generated regex. If defined, the `nocase` option will be overridden. |

316316

| [format](#optionsformat) | `function` | `undefined` | Custom function for formatting the returned string. This is useful for removing leading slashes, converting Windows paths to Posix paths, etc. |

317317

| `ignore` | `array\|string` | `undefined` | One or more glob patterns for excluding strings that should not be matched from the result. |

318318

| `keepQuotes` | `boolean` | `false` | Retain quotes in the generated regex, since quotes may also be used as an alternative to backslashes. |

@@ -705,4 +705,4 @@ npm install -g verbose/verb#dev verb-generate-readme && verb

705705

### License

706706707707

Copyright © 2017-present, [Jon Schlinkert](https://github.com/jonschlinkert).

708-

Released under the [MIT License](LICENSE).

708+

Released under the [MIT License](LICENSE).