import { Injectable, } from '@angular/core'; @Injectable() export class CurrentEnvironmentService { public isDev() { return this._getCurrentEnvironment() === 'dev'; } public isStaging() { return this._getCurrentEnvironment() === 'staging'; } public isProduction() { return this._getCurrentEnvironment() === 'production'; } private _getCurrentEnvironment() { return process.env.ENVIRONMENT; } }