Skip to content

Instantly share code, notes, and snippets.

@vasylpb
Created August 15, 2020 17:50
Show Gist options
  • Save vasylpb/e50e82537d4af5ba800c3e9d598f7bd9 to your computer and use it in GitHub Desktop.
Save vasylpb/e50e82537d4af5ba800c3e9d598f7bd9 to your computer and use it in GitHub Desktop.
export const sanitizeListRestProps = props =>
Object.keys(props)
.filter(propName => !injectedProps.includes(propName))
.reduce((acc, key) => ({ ...acc, [key]: props[key] }), {});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment