import { maxBy } from "https://dotland.deno.dev/std@0.116.0/collections/mod.ts";
Returns the first element that is the largest value of the given function or undefined if there are no elements.
Example:
import { maxBy } from "https://deno.land/std@0.116.0/collections/mod.ts";
import { assertEquals } from "https://deno.land/std@0.116.0/testing/asserts.ts";
const people = [
{ name: 'Anna', age: 34 },
{ name: 'Kim', age: 42 },
{ name: 'John', age: 23 },
];
const personWithMaxAge = maxBy(people, i => i.age);
assertEquals(personWithMaxAge, { name: 'Kim', age: 42 });