(platform: NodeJS.Platform)
| 8 | export let MacOSVersion: string = null; |
| 9 | |
| 10 | export function setPlatform(platform: NodeJS.Platform) { |
| 11 | PLATFORM = platform; |
| 12 | } |
| 13 | |
| 14 | export function setMacOSVersion(version: string) { |
| 15 | MacOSVersion = version; |
no outgoing calls
no test coverage detected