/
Jzargo
/
chat-project
Обзор
Документация
Войти
/
Jzargo
/
chat-project
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
project
node_modules/spawn-command/lib/spawn-command.js
17 строк
437 B
Jzargo0729
321
27 мар 2025, 21:36
27 мар 2025, 21:36
18e1727
Код
Авторство
О чём код?
var util = require('util'); var spawn = require('child_process').spawn; module.exports = function (command, options) { var file, args; if (process.platform === 'win32') { file = 'cmd.exe'; args = ['/s', '/c', '"' + command + '"']; options = util._extend({}, options); options.windowsVerbatimArguments = true; } else { file = '/bin/sh'; args = ['-c', command]; } return spawn(file, args, options); };