PHP WebShell

Текущая директория: /opt/BitGoJS/node_modules/shx/lib

Просмотр файла: printCmdRet.js

'use strict';

Object.defineProperty(exports, "__esModule", {
  value: true
});
// This function takes the raw result of a shelljs command and figures out how to print it.
// Invoke this *REGARDLESS* of what the command returns, it will figure it out.
var printCmdRet = exports.printCmdRet = function printCmdRet(ret) {
  // Don't print these types
  if (typeof ret === 'boolean' || !ret) return;

  if (typeof ret.stdout === 'string') {
    process.stdout.write(ret.stdout);
  } else {
    process.stdout.write(ret);
  }
};

Выполнить команду


Для локальной разработки. Не используйте в интернете!