method BSTree.prototype.insertimport { BSTree } from "https://dotland.deno.dev/std@0.146.0/collections/mod.ts"; insert(value: T): booleanAdds the value to the binary search tree if it does not already exist in it. Returns true if successful. Adds the value to the binary search tree if it does not already exist in it. Returns true if successful. Parametersvalue: TReturnsboolean