• File: env-options.js
  • Full Path: /home6/laduliya/mobile.digitalilab.com/dotenv/lib/env-options.js
  • Date Modified: 10/26/1985 8:15 AM
  • File size: 422 bytes
  • MIME-type: text/plain
  • Charset: utf-8
/* @flow */

// ../config.js accepts options via environment variables
const options = {}

if (process.env.DOTENV_CONFIG_ENCODING != null) {
  options.encoding = process.env.DOTENV_CONFIG_ENCODING
}

if (process.env.DOTENV_CONFIG_PATH != null) {
  options.path = process.env.DOTENV_CONFIG_PATH
}

if (process.env.DOTENV_CONFIG_DEBUG != null) {
  options.debug = process.env.DOTENV_CONFIG_DEBUG
}

module.exports = options