(algorithm: string, data: string)
| 56 | subtle: { |
| 57 | // @ts-ignore |
| 58 | async digest(algorithm: string, data: string) { |
| 59 | const hash = createHash('sha256') |
| 60 | hash.update(data) |
| 61 | return hash.digest() |
| 62 | }, |
| 63 | }, |
| 64 | } |
| 65 |
nothing calls this directly
no outgoing calls
no test coverage detected