()
| 15 | try { |
| 16 | let called = false; |
| 17 | Object.defineProperty(process, 'arch', { get() { called += 'arch|'; return arch; } }); |
| 18 | Object.defineProperty(process, 'platform', { get() { called = 'platform|'; return platform; } }); |
| 19 | Object.defineProperty(process, 'version', { get() { called = 'version|'; return version; } }); |
| 20 |
no outgoing calls