Skip to content

Instantly share code, notes, and snippets.

@hacker-DOM
Last active June 18, 2019 14:21
Show Gist options
  • Save hacker-DOM/c1b68a8bcc8f0966ace6ea9f28bbde27 to your computer and use it in GitHub Desktop.
Save hacker-DOM/c1b68a8bcc8f0966ace6ea9f28bbde27 to your computer and use it in GitHub Desktop.
const user = {
id: 12,
name: `Bob`,
age: 18
}
reshape2({
key: R.prop(`id`),
value: [R.prop(`name`), R.toUpper]
},
user,
)
// {key: 12, value: 'BOB'}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment