Skip to main content
Go to Latest
function minWith
import { minWith } from "https://deno.land/std@0.145.0/collections/min_with.ts";

Returns the first element having the smallest value according to the provided comparator or undefined if there are no elements

Example:

import { minWith } from "https://deno.land/std@0.145.0/collections/min_with.ts";
import { assertEquals } from "https://deno.land/std@0.145.0/testing/asserts.ts";

const people = ["Kim", "Anna", "John"];
const smallestName = minWith(people, (a, b) => a.length - b.length);

assertEquals(smallestName, "Kim");

Parameters

array: readonly T[]
comparator: (a: T, b: T) => number

Returns

T | undefined