UNPKG

142 BJavaScriptView Raw
1const command = (commandText) => {
2 return /^win/.test(process.platform) ? `${commandText}.cmd` : commandText;
3};
4
5module.exports = command;