UNPKG

mop-cli

Version:

Lint and maintain many projects at once

14 lines (9 loc) 301 B
'use strict'; const util = require('util'); const childProcess = require('child_process'); const exec = util.promisify(childProcess.exec); const git = async (command, option) => { const { stdout } = await exec('git ' + command, option); return stdout.trimRight(); }; module.exports = git;