1.0.1 • Published 8 years ago
different-platform v1.0.1
different-platform
Return 'linux' on Windows, otherwise return 'win32'
const differentPlatform = require('different-platform');
// on Windows
differentPlatform(); //=> 'linux'
// on non-Windows OS, for example Linux and macOS
differentPlatform(); //=> 'win32'Useful for testing the behavior of process.platform-dependent code on the two platforms in combination with pretend-platform.
Installation
npm install different-platformAPI
const differentPlatform = require('different-platform');differentPlatform()
Return: string (linux when process.platform equals to 'win32', otherwise 'win32')
License
ISC License © 2018 Shinnosuke Watanabe