( itemName: string, presentPlace: string, )
| 229 | } |
| 230 | |
| 231 | export function throwIsNotPresentError( |
| 232 | itemName: string, |
| 233 | presentPlace: string, |
| 234 | ): never { |
| 235 | throw new Error(`${itemName} is not present in ${presentPlace}`); |
| 236 | } |
| 237 | |
| 238 | export function getPluginNameFromSlug( |
| 239 | slug: string, |
no outgoing calls
no test coverage detected