(fd)
| 858 | |
| 859 | const handleTypes = ['TCP', 'TTY', 'UDP', 'FILE', 'PIPE', 'UNKNOWN']; |
| 860 | function guessHandleType(fd) { |
| 861 | const type = _guessHandleType(fd); |
| 862 | return handleTypes[type]; |
| 863 | } |
| 864 | |
| 865 | class WeakReference { |
| 866 | #weak = null; |
no outgoing calls
no test coverage detected
searching dependent graphs…