Skip to content

Instantly share code, notes, and snippets.

@KubaJastrz
Created January 25, 2023 12:32
Show Gist options
  • Save KubaJastrz/a7265c83b957558a16884120c53f11e6 to your computer and use it in GitHub Desktop.
Save KubaJastrz/a7265c83b957558a16884120c53f11e6 to your computer and use it in GitHub Desktop.
const array = ["foo", "bar", null, "zoo", null, undefined];
const filterdArray = array.filter(notEmpty);
function notEmpty<T>(value: T): value is Exclude<typeof value, null | undefined> {
return value !== null && value !== undefined;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment