Last active
October 4, 2022 09:04
-
-
Save fmg-lydonchandra/26748669ef94fa10963805925e800ee0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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