github.com/Aestek/consul@v1.2.4-0.20190309222502-b2c31e33971a/ui-v2/app/helpers/env.js (about)

     1  import { helper } from '@ember/component/helper';
     2  import $ from 'consul-ui/config/environment';
     3  export function env([name, def = ''], hash) {
     4    return $[name] != null ? $[name] : def;
     5  }
     6  
     7  export default helper(env);