(...a)
| 9 | |
| 10 | // modified path.resolve to return null if first argument is '0', used to disable screenshots |
| 11 | export const resolve = (...a) => a.length && a[0] == '0' ? null : path.resolve(...a); |
| 12 | |
| 13 | // json database |
| 14 | import { JSONFilePreset } from 'lowdb/node'; |
no outgoing calls
no test coverage detected