Skip to Content
EnvisProd

isProd

Check whether NodeJS Env is production.

Import

import { isProd } from '@fullstacksjs/toolbox';

Signature

function isProd(): boolean {}

Examples

/* NODE_ENV=development node */ isProd() // true /* NODE_ENV=production node */ isProd() // false /* NODE_ENV="" node */ isProd() // false
Last updated on