method BinarySearchTree.prototype.findimport { BinarySearchTree } from "https://dotland.deno.dev/std@0.223.0/data_structures/mod.ts"; find(value: T): T | nullReturns node value if found in the binary search tree. Parametersvalue: TReturnsT | null