aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-utils/src/env.ts
blob: 6f8b1c5f80a8e538bc35e312c57c1d97f26ceca6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import * as _ from 'lodash';
import * as process from 'process';

export const env = {
    parseBoolean(key: string): boolean {
        let isTrue: boolean;
        const envVarValue = process.env[key];
        if (envVarValue === 'true') {
            isTrue = true;
        } else if (envVarValue === 'false' || _.isUndefined(envVarValue)) {
            isTrue = false;
        } else {
            throw new Error(
                `Failed to parse ENV variable ${key} as boolean. Please make sure it's either true or false. Defaults to false`,
            );
        }
        return isTrue;
    },
};