(filename: string)
| 88 | * @returns The "filename" with the last extension removed |
| 89 | */ |
| 90 | export const removeExtension = (filename: string) => filename.split('.')[0]; |
| 91 | |
| 92 | export const promptQuestions = (questions: PromptObject[]) => |
| 93 | prompts(questions, { |
no outgoing calls
no test coverage detected