(url)
| 44 | * @returns Boolean indicating if the URL is a plain Git URL |
| 45 | */ |
| 46 | const isPlainGitURL = (url) => { |
| 47 | return ( |
| 48 | (url.startsWith('https') || url.startsWith('git@')) && url.endsWith('.git') |
| 49 | ) |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * Function to safely extract a string value from the query object |
no outgoing calls
no test coverage detected
searching dependent graphs…