(config: Config, name: string)
| 136 | } |
| 137 | |
| 138 | export async function checkAppName(config: Config, name: string): Promise<string | null> { |
| 139 | // We allow pretty much anything right now, have fun |
| 140 | if (!name?.length) { |
| 141 | return `Must provide an app name. For example: 'Spacebook'`; |
| 142 | } |
| 143 | return null; |
| 144 | } |
| 145 | |
| 146 | export async function wait(time: number): Promise<void> { |
| 147 | return new Promise((resolve) => setTimeout(resolve, time)); |
no outgoing calls
no test coverage detected