Skip to content

Instantly share code, notes, and snippets.

@Emilios1995
Created July 31, 2017 01:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Emilios1995/a8307829eb77f6cd3b7662ffef9bc5a2 to your computer and use it in GitHub Desktop.
Save Emilios1995/a8307829eb77f6cd3b7662ffef9bc5a2 to your computer and use it in GitHub Desktop.
const normalize = (spec, input) =>
Object.keys(spec).reduce(
(acc, x) => R.assoc(x, R.propOr(null, x, input), acc),
{}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment