function convertToEnv (object) { let envFile = '' for (const key of Object.keys(object)) { envFile += `${key}=${object[key]} ` } return envFile }