method BinaryHeap.prototype.peekimport { BinaryHeap } from "https://dotland.deno.dev/std@0.223.0/data_structures/mod.ts"; peek(): T | undefinedReturns the greatest value in the binary heap, or undefined if it is empty. ReturnsT | undefined