export const isProcessArg = (proccessArgs: string[], arg: string) => { const index = proccessArgs.indexOf('--' + arg) return index !== -1 }