import { config } from '../../config'

export const isProd = () =>
    ['prod', 'production'].indexOf(config.ENV.toLowerCase()) !== -1

export const isDev = () =>
    ['dev', 'development', 'si'].indexOf(config.ENV.toLowerCase()) !== -1
