Read an environment variable.
env(name[, fallbackValue])
If the environment variable is not set, it will return fallbackValue
instead.
const isProduction = env('NODE_ENV') === 'production';
This is a simple wrapper around process.env
but allows for easier mocking in
tests.