(feature)
| 6097 | ["crypto", "sqlite"] |
| 6098 | ); |
| 6099 | function detectRuntimeFeature(feature) { |
| 6100 | if (runtimeFeaturesAsNodeModule.includes( |
| 6101 | /** @type {RuntimeFeatureByNodeModule} */ |
| 6102 | feature |
| 6103 | )) { |
| 6104 | return detectRuntimeFeatureByNodeModule(`node:${feature}`); |
| 6105 | } |
| 6106 | throw new TypeError(`unknown feature: ${feature}`); |
| 6107 | } |
| 6108 | __name(detectRuntimeFeature, "detectRuntimeFeature"); |
| 6109 | var RuntimeFeatures = class { |
| 6110 | static { |
no test coverage detected
searching dependent graphs…