(value: string)
| 735 | } |
| 736 | |
| 737 | function boolString(value: string): boolean { |
| 738 | return /^(?:true|1|yes|on)$/i.test(value.trim()); |
| 739 | } |
| 740 | |
| 741 | function githubRunUrl(): string { |
| 742 | const server = process.env.GITHUB_SERVER_URL || "https://github.com"; |
no outgoing calls
no test coverage detected