(filename: string)
| 504 | index++ |
| 505 | } else { |
| 506 | source += "[^/]*" |
| 507 | } |
| 508 | } else if (char === "?") { |
| 509 | source += "[^/]" |
| 510 | } else { |
| 511 | source += escapeRegExp(char) |
| 512 | } |
| 513 | } |
| 514 | return new RegExp(`${source}$`) |
| 515 | } |
| 516 | |
| 517 | /** |
| 518 | * Creates a predicate that checks whether a filename is included by the configured JSDoc globs. |
| 519 | * |
| 520 | * @category constructors |
| 521 | * @since 4.0.0 |
| 522 | */ |
no test coverage detected
searching dependent graphs…