UNPKG

node-vbox

Version:

Interact with virtualbox from nodejs

12 lines (6 loc) 191 B
const execute = require('../lib/executeCommand'); module.exports = () => { return new Promise((resolve, reject) => { execute(['--version']).then(resolve).catch(reject); }); };