packages/babel-core/src/config/helpers/environment.js

Summary

Maintainability
A
0 mins
Test Coverage
// @flow

export function getEnv(defaultValue: string = "development"): string {
  return process.env.BABEL_ENV || process.env.NODE_ENV || defaultValue;
}