(value?: boolean)
| 20 | } |
| 21 | |
| 22 | export const marshalBool = (value?: boolean) => { |
| 23 | return !!value ? '1' : '0'; |
| 24 | } |
| 25 | |
| 26 | export const resolvePathRelativeToConfig = (localPath: string, configPath: string) => { |
| 27 | let absolutePath = localPath; |
no outgoing calls
no test coverage detected