Skip to content

Instantly share code, notes, and snippets.

@whs
Created December 9, 2019 10:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save whs/ea00c223a80d117251ecc490d855cd4a to your computer and use it in GitHub Desktop.
Save whs/ea00c223a80d117251ecc490d855cd4a to your computer and use it in GitHub Desktop.
// from this
I18n.t(`business.${domain}.call`)
// to this
switch(domain){
case Domain.FOOD:
return I18n.t('business.FOOD.call')
case Domain.BEAUTY:
return I18n.t('business.BEAUTY.call')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment