(value: any)
| 60 | } |
| 61 | |
| 62 | function isEmptyObject(value: any): boolean { |
| 63 | return ( |
| 64 | value != null && |
| 65 | typeof value === 'object' && |
| 66 | !Array.isArray(value) && |
| 67 | Object.keys(value).length === 0 |
| 68 | ) |
| 69 | } |
| 70 | |
| 71 | function setLogPath(p: string): void { |
| 72 | if (p === logPath) return // nothing to do |
no outgoing calls
no test coverage detected