UNPKG

sherry-utils

Version:
9 lines (7 loc) 212 B
const { fork } = require('child_process') const logger = require('./logger') module.exports = (...args) => { const [command, options] = args logger.debug(command, options.join(' ')) return fork(...args) }