mirror of
https://github.com/EvernodeXRPL/hp-devkit.git
synced 2026-06-03 16:56:51 +00:00
9 lines
201 B
JavaScript
9 lines
201 B
JavaScript
const { execSync } = require('child_process');
|
|
|
|
function exec(commad, streamOut = false) {
|
|
return execSync(commad, streamOut ? { stdio: 'inherit' } : {stdio : 'pipe' });
|
|
}
|
|
|
|
module.exports = {
|
|
exec
|
|
}; |