Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update isProd utility #368

Merged
merged 1 commit into from Feb 9, 2022
Merged

fix: update isProd utility #368

merged 1 commit into from Feb 9, 2022

Conversation

mdonnalley
Copy link
Contributor

isProd returns false if process.env.NODE_ENV is either development or test

Fixes #367

@mdonnalley mdonnalley self-assigned this Feb 9, 2022
@mdonnalley mdonnalley merged commit a58315d into main Feb 9, 2022
@mdonnalley mdonnalley deleted the mdonnalley/is-prod branch February 9, 2022 16:36
@y-lakhdar
Copy link
Contributor

Thanks 👍

@@ -37,5 +37,5 @@ export function castArray<T>(input?: T | T[]): T[] {
}

export function isProd() {
return process.env.NODE_ENV !== 'development'
return !['development', 'test'].includes(process.env.NODE_ENV ?? '')
Copy link
Contributor

@RodEsp RodEsp Feb 9, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we please try to err on the side of more readable code?

I would much rather see something like return process.env.NODE_ENV !== 'development' && process.env.NODE_ENV !== 'test'. It's so much easier to parse what exactly that code does and intends to do than something like this.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about?
return !['development', 'test'].some(mode => mode === (process.env.NODE_ENV ?? '')

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we can go even simpler. How about?
return !['development', 'test'].reduce((prev, curr) => curr === (process.env.NODE_ENV ?? '') || prev, false)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Tests run against lib, not src
4 participants