(key)
| 96 | } |
| 97 | |
| 98 | const isSingleVersionPin = (key) => { |
| 99 | try { |
| 100 | const parsed = npa(key) |
| 101 | return parsed.type === 'version' |
| 102 | } catch { |
| 103 | return false |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | // Build the warning string emitted when an existing deny entry blocks |
| 108 | // an approval. Per RFC, a name-only deny ("pkg": false) is widest and |
no outgoing calls
no test coverage detected
searching dependent graphs…