Skip to content

Instantly share code, notes, and snippets.

@ronanyeah
Created April 21, 2017 10:38
Show Gist options
  • Save ronanyeah/10017581bc6a9dbba69c39ae5f5ac5cc to your computer and use it in GitHub Desktop.
Save ronanyeah/10017581bc6a9dbba69c39ae5f5ac5cc to your computer and use it in GitHub Desktop.
const { zipObj } = require('ramda')
// (String, [String]) -> Object
const translate = (path, array) =>
zipObj(
array,
array.map(
value =>
this.$translate.instant(`${path}${value}`)
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment