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/852717b7588a61ab90da2771e9a1abb6 to your computer and use it in GitHub Desktop.
Save Emilios1995/852717b7588a61ab90da2771e9a1abb6 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