(str: string)
| 24 | // - the '_' character, and |
| 25 | // - a number cannot be the first character |
| 26 | export const getSafeId = (str: string) => str |
| 27 | .replace(/[^\w_]/g, '_') |
| 28 | .replace(/^[\d_]+/g, '_') |
| 29 | .toUpperCase(); |
| 30 | |
| 31 | export async function extendImage(params: DockerResolverParameters, config: SubstitutedConfig<DevContainerConfig>, imageName: string, additionalImageNames: string[], additionalFeatures: Record<string, string | boolean | Record<string, string | boolean>>, canAddLabelsToContainer: boolean) { |
| 32 | const { common } = params; |
no outgoing calls
no test coverage detected