(value: string)
| 284 | ]); |
| 285 | |
| 286 | function isSupportedAlgorithm(value: string): value is SignatureAlgorithm { |
| 287 | return SUPPORTED_ALGORITHMS.has(value); |
| 288 | } |
| 289 | |
| 290 | function getSignParams( |
| 291 | algorithm: SignatureAlgorithm, |
no test coverage detected