UNPKG

@nexssp/cli

Version:

Nexss PROGRAMMER - Over 50 programming languages together..

11 lines (9 loc) 251 B
module.exports = (opts) => { const result = {} if (process.platform === 'win32') { Object.assign(result, { stdio: 'inherit' }, opts) } else { Object.assign(result, { stdio: 'inherit', shell: process.shell }, opts) } return result }