UNPKG

140 BJavaScriptView Raw
1const platform = require('os').platform();
2
3module.exports = function winCmd(cmd) {
4 return /^win/.test(platform) ? cmd + '.cmd' : cmd;
5};