UNPKG

@storm-stack/utilities

Version:

This package includes various base utility class and various functions to assist in the development process.

12 lines (11 loc) 438 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isProduction = exports.isMode = exports.isDevelopment = void 0; const isMode = (mode, env = process.env.NODE_ENV) => env?.toLowerCase() === mode; exports.isMode = isMode; const isProduction = env => isMode("production", env); exports.isProduction = isProduction; const isDevelopment = env => !isProduction(env); exports.isDevelopment = isDevelopment;