Skip to content

Instantly share code, notes, and snippets.

@DistractionBoy
Created November 19, 2021 04:34
Show Gist options
  • Save DistractionBoy/7d58925920cece47334444166967cd08 to your computer and use it in GitHub Desktop.
Save DistractionBoy/7d58925920cece47334444166967cd08 to your computer and use it in GitHub Desktop.
const removeUndefinedForNextJsSerializing = <T,>(props: T): T =>
Object.fromEntries(
Object.entries(props).filter(([, value]) => value !== undefined)
) as T;
@DistractionBoy
Copy link
Author

as seen on: vercel/next.js#11209

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment