mirror of
https://github.com/Expand-sys/ccashfrontend
synced 2025-12-20 16:42:13 +11:00
6 lines
No EOL
152 B
JavaScript
6 lines
No EOL
152 B
JavaScript
var child_process = require('child_process')
|
|
|
|
module.exports = function exec(command)
|
|
{
|
|
return child_process.execSync(command).toString().trim()
|
|
} |