(value: unknown, message: string)
| 233 | } |
| 234 | |
| 235 | export function requiredDaemonString(value: unknown, message: string): string { |
| 236 | if (typeof value !== 'string' || value.length === 0) { |
| 237 | throw new AppError('INVALID_ARGS', message); |
| 238 | } |
| 239 | return value; |
| 240 | } |
no outgoing calls
no test coverage detected