ccashfrontend/views/node_modules/libphonenumber-js/runnable/modules/exec.js
2021-06-18 09:20:09 +10:00

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()
}