import { execSync } from 'node:child_process' const log = console.log // helper for output command const command = function(value) { log(execSync(value).toString().trim()) } export { command, execSync, log }