Sha256: 5cfe09b1a069d5f398ab1ee05f49880e9fc0bc03de749b2df15369684f16b78c
Contents?: true
Size: 422 Bytes
Versions: 6
Compression:
Stored size: 422 Bytes
Contents
/* @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
Version data entries
6 entries across 6 versions & 1 rubygems