erp-construccion-backend/node_modules/libphonenumber-js/build-scripts/helpers/exec.js

6 lines
155 B
JavaScript

import { execSync } from 'child_process'
// Executes a command.
export default function exec(command) {
return execSync(command).toString().trim()
}