(ref)
| 43 | const reference_pattern = /^github-release:(?<organization>[^\/]+)\/(?<repository>[^:]+)(?::(?<version>[^\/]+))?\/(?<binary>[^:]+)$/g; |
| 44 | |
| 45 | const supports = (ref) => { |
| 46 | reference_pattern.lastIndex = 0; |
| 47 | return reference_pattern.test(ref); |
| 48 | } |
| 49 | |
| 50 | const parse = (ref) => { |
| 51 | const reference = new Function(`return \`${ref}\`;`).call(); |
no outgoing calls
no test coverage detected