(text: string)
| 60 | } |
| 61 | |
| 62 | function escapeRegExp(text: string): string { |
| 63 | return text.replace(/[.*+?^${}()|[\]\\]/g, '\\$&') |
| 64 | } |
| 65 | |
| 66 | function hasReadmeDevInstallHint(packageName: string, readmeContent?: string | null): boolean { |
| 67 | if (!readmeContent) return false |
no outgoing calls
no test coverage detected