(newLocal: any)
| 28 | } |
| 29 | |
| 30 | function createKeyToNullMapping(newLocal: any): any { |
| 31 | return Object.keys(newLocal).reduce((acc: any, key: string) => { |
| 32 | acc[key] = null |
| 33 | return acc |
| 34 | }, {}) |
| 35 | } |
| 36 | // @ts-ignore |
| 37 | function deleteFile(filePath: string){ |
| 38 | if (fs.existsSync(filePath)) { |
no outgoing calls
no test coverage detected