Skip to content

Instantly share code, notes, and snippets.

@fmg-lydonchandra
Last active October 4, 2022 09:04
Show Gist options
  • Save fmg-lydonchandra/26748669ef94fa10963805925e800ee0 to your computer and use it in GitHub Desktop.
Save fmg-lydonchandra/26748669ef94fa10963805925e800ee0 to your computer and use it in GitHub Desktop.
export const removeNullsFromList = <T>(list: (T | null)[]): T[] => {
return list.filter((i): i is Exclude<typeof i, null> => i !== null);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment