export function getPlatform()

in src/run.ts [67:69]


export function getPlatform(): string {
   return os.platform() === 'win32' ? 'windows' : os.platform()
}