function equalsimport { equals } from "https://dotland.deno.dev/x/rambda@v9.2.0/mod.ts"; equals<T>(x: T, y: T): booleanIt deeply compares x and y and returns true if they are equal. equals<T>(x: T): (y: T) => booleanIt deeply compares x and y and returns true if they are equal. Type ParametersTParametersx: Ty: TReturnsbooleanType ParametersTParametersx: TReturns(y: T) => boolean