Skip to content

Instantly share code, notes, and snippets.

@hacker-DOM
Last active June 18, 2019 13:03
Show Gist options
  • Save hacker-DOM/4cfde53248ad1cfc4397c920007e8d93 to your computer and use it in GitHub Desktop.
Save hacker-DOM/4cfde53248ad1cfc4397c920007e8d93 to your computer and use it in GitHub Desktop.
const reshape2 = R.curry((shape, object) =>
R.map(
fn => R.is(Array, fn) ? R.pipe(...fn)(object) : fn(object),
shape
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment