(value: string)
| 42 | const isNonEmptyString = (value: string) => value !== "" |
| 43 | |
| 44 | const shellQuote = (value: string) => `'${value.replaceAll("'", "'\\''")}'` |
| 45 | |
| 46 | const normalizeVersion = (range: string) => { |
| 47 | const match = range.match(/\d+\.\d+\.\d+(?:-[0-9A-Za-z.-]+)?/) |
no outgoing calls
no test coverage detected
searching dependent graphs…