function isDeepStrictEqual Usageimport { isDeepStrictEqual } from "node:util"; isDeepStrictEqual(val1: unknown, val2: unknown): boolean Returns true if there is deep strict equality between val1 and val2. Otherwise, returns false. Returns true if there is deep strict equality between val1 and val2. Otherwise, returns false. See assert.deepStrictEqual() for more information about deep strict equality. Parameters val1: unknown val2: unknown Return Type boolean