function equalsimport { equals } from "https://deno.land/x/rambda@9.2.1/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