(obj: any)
| 190 | } |
| 191 | |
| 192 | export function isValidJsonObject(obj: any): obj is Record<string, unknown> { |
| 193 | return !!(obj && typeof obj === "object" && !Array.isArray(obj)); |
| 194 | } |
| 195 | |
| 196 | export async function directoryExists(p: string) { |
| 197 | try { |
no outgoing calls
no test coverage detected
searching dependent graphs…