UNPKG

typia

Version:

Superfast runtime validators with only one line

9 lines (7 loc) 196 B
import cp from "child_process"; export namespace CommandExecutor { export const run = (str: string): void => { console.log(`\n$ ${str}`); cp.execSync(str, { stdio: "inherit" }); }; }