Skip to main content
Go to Latest
function mapNotNullish
import { mapNotNullish } from "https://deno.land/std@0.177.0/collections/mod.ts";

Returns a new array, containing all elements in the given array transformed using the given transformer, except the ones that were transformed to null or undefined.

Examples

Example 1

import { mapNotNullish } from "https://deno.land/std@0.177.0/collections/map_not_nullish.ts";
import { assertEquals } from "https://deno.land/std@0.177.0/testing/asserts.ts";

const people = [
  { middleName: null },
  { middleName: "William" },
  { middleName: undefined },
  { middleName: "Martha" },
];
const foundMiddleNames = mapNotNullish(people, (it) => it.middleName);

assertEquals(foundMiddleNames, ["William", "Martha"]);

Parameters

array: readonly T[]
transformer: (el: T) => O

Returns

NonNullable<O>[]