(name: string)
| 364 | } |
| 365 | |
| 366 | function getSafeFilenameForName(name: string): string { |
| 367 | // https://github.com/microsoft/rushstack/blob/d0f8f10a9ce1ce4158ca2da5b79c54c71d028d89/apps/api-documenter/src/utils/Utilities.ts |
| 368 | return name.replace(/[^a-z0-9_\-\.]/gi, '_').toLowerCase(); |
| 369 | } |
| 370 | |
| 371 | function getEditUrl(config: BuildConfig, fileUrlPath: string | undefined) { |
| 372 | if (fileUrlPath) { |
no outgoing calls
no test coverage detected
searching dependent graphs…