(url: string)
| 1 | export const shortcutMap = new Map<string, string>(); |
| 2 | |
| 3 | export const getFeatureId = (url: string): FeatureId => url.split('/').pop()!.split('.', 1)[0] as FeatureId; |
| 4 | |
| 5 | type FeatureHelper = { |
| 6 | /** If `import.meta.url` is passed as URL, this will be the feature ID */ |
no outgoing calls
no test coverage detected