Skip to content

Instantly share code, notes, and snippets.

@frontweb
Created April 30, 2019 12:41
Show Gist options
  • Save frontweb/af93a22f7bfad793e29951e3ce437240 to your computer and use it in GitHub Desktop.
Save frontweb/af93a22f7bfad793e29951e3ce437240 to your computer and use it in GitHub Desktop.
Javascript Utils
// Create a new object with a subset of fields - it's useful in react-redux' connect()
// pick('name')({name: 'John', age: 35}) => {name: 'John'}
export const pick = (...fields) => o => fields.reduce((result, field) => {
result[field] = o[field];
return result;
}, {})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment