UNPKG

@gameroom/cli

Version:

A command line tool for Gameroom

11 lines (9 loc) 237 B
const { homedir } = require('os'), { resolve } = require('path') module.exports = (options) => { let { path } = options if (!path) return if (path[0] === '~') path = path.replace('~', homedir()) options.path = path return }