Skip to content

Instantly share code, notes, and snippets.

@targumon
Created August 27, 2019 08:09
Show Gist options
  • Save targumon/1ca96faca762d487ebabe62951542043 to your computer and use it in GitHub Desktop.
Save targumon/1ca96faca762d487ebabe62951542043 to your computer and use it in GitHub Desktop.
const getMessage = (key, language) => {
let msg = resources[language][key]
if (msg.split(' ').length > 3) {
msg = msg.replace(/ (?!.* )/, '\xA0')
}
return msg
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment