// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // This module is browser compatible. /** * Returns the first element having the smallest value according to the provided * comparator or undefined if there are no elements * * @example * ```ts * import { minWith } from "https://deno.land/std@$STD_VERSION/collections/min_with.ts"; * import { assertEquals } from "https://deno.land/std@$STD_VERSION/assert/assert_equals.ts"; * * const people = ["Kim", "Anna", "John"]; * const smallestName = minWith(people, (a, b) => a.length - b.length); * * assertEquals(smallestName, "Kim"); * ``` */ export function minWith( array: Iterable, comparator: (a: T, b: T) => number, ): T | undefined { let min: T | undefined = undefined; let isFirst = true; for (const current of array) { if (isFirst || comparator(current, min) < 0) { min = current; isFirst = false; } } return min; }