osValue.js 254 B

12345678910111213
  1. const osValue = process.platform
  2. module.exports = () => {
  3. return osValue == 'darwin'
  4. ? 'Mac OS'
  5. : osValue == 'win32'
  6. ? 'Windows OS'
  7. : osValue == 'android'
  8. ? 'Android OS'
  9. : osValue == 'linux'
  10. ? 'Linux OS'
  11. : 'Other OS'
  12. }