Skip to content

Instantly share code, notes, and snippets.

@sergueyarellano
Created May 26, 2021 18:52
Show Gist options
  • Save sergueyarellano/5f600c43b56b0600f39bb1d0b17aefeb to your computer and use it in GitHub Desktop.
Save sergueyarellano/5f600c43b56b0600f39bb1d0b17aefeb to your computer and use it in GitHub Desktop.
function mapKeysWith (data, contract) {
const contractProps = invert(contract)
return mapKeys(data, function (value, key) {
return contractProps[key]
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment