mirror of
https://github.com/EvernodeXRPL/hp-devkit.git
synced 2026-04-29 15:37:58 +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
|
|
}; |