martinheidegger/network-interfaces

View on GitHub
get-nic-types/index.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict'
exports.getNicTypes =
  process.platform === 'win32' ? require('./win32.js')
    : process.platform === 'darwin' ? require('./darwin.js')
      : require('./linux.js')