Skip to content

Instantly share code, notes, and snippets.

@NSLog0
Created January 19, 2020 12:16
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 NSLog0/f360d4814ce9b027daf5b0d3760e33fe to your computer and use it in GitHub Desktop.
Save NSLog0/f360d4814ce9b027daf5b0d3760e33fe to your computer and use it in GitHub Desktop.
import * as R from 'ramda'
const EN_MESSAGE = 'Our website is under renovate, please be patient. We\'ll be back soon'
const TH_MESSAGE = 'กำลังปรับปรุงเว็บใหม่'
const lang = 'en'
const showMessage = R.ifElse(
R.propEq('lang', 'en'),
() => EN_MESSAGE,
() => TH_MESSAGE,
);
const resp = showMessage({ lang })
console.log(resp) //=> Our website is under renovate, please be patient. We'll be back soon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment