(platform: string = process.platform)
| 34 | // Delegation wrappers that call through platformUtils at runtime |
| 35 | // This allows test stubs to take effect |
| 36 | export const getOSType = (platform: string = process.platform): OSType => platformUtils.getOSType(platform); |
| 37 | export const untildify = (path: string, home: string): string => platformUtils.untildify(path, home); |
no outgoing calls
no test coverage detected