UNPKG

@vin_coder/pg-cli

Version:
11 lines (9 loc) 193 B
const { execSync } = require("child_process"); exports.hasYarn = () => { try { execSync("yarn --version", { stdio: "ignore" }); return true; } catch (e) { return false; } };