UNPKG

mstr-viz

Version:

A new dev tool for creating custom visualizations

11 lines (9 loc) 184 B
const cp = require('child_process'); module.exports = () => { try { cp.execSync('git --version', { stdio: 'ignore' }); return true; } catch (e) { return false; } };