()
| 478 | if (ArrayPrototypeIncludes(experimentalAlgorithms, algorithmName)) { |
| 479 | ObjectDefineProperty(result[operation], algorithmName, { |
| 480 | get() { |
| 481 | emitExperimentalWarning(`The ${algorithmName} Web Crypto API algorithm`); |
| 482 | return dict; |
| 483 | }, |
| 484 | __proto__: null, |
| 485 | enumerable: true, |
| 486 | }); |
nothing calls this directly
no test coverage detected