(featureUrl: string)
| 242 | } |
| 243 | |
| 244 | function unload(featureUrl: string): void { |
| 245 | const id = getFeatureId(featureUrl); |
| 246 | for (const controller of currentFeatureControllers.get(id) ?? []) { |
| 247 | controller.abort(); |
| 248 | } |
| 249 | } |
| 250 | |
| 251 | const features = { |
| 252 | add, |
nothing calls this directly
no test coverage detected