Skip to main content
variable minBy
import { minBy } from "https://deno.land/x/30_seconds_of_typescript@v1.0.1/util.ts";

Returns the minimum value of an array, after mapping each element to a value using the provided function.

Use Array.prototype.map() to map each element to the value returned by fn, Math.min() to get the minimum value.

type

<T = any>(arr: T[], fn: MapFunc<T> | string) => unknown