function assertNotEqualsimport { assertNotEquals } from "https://dotland.deno.dev/std@0.223.0/assert/assert_not_equals.ts"; assertNotEquals<T>(actual: T,expected: T,msg?: string,)Make an assertion that actual and expected are not equal, deeply. If not then throw. Type parameter can be specified to ensure values under comparison have the same type. ExamplesExample 1 import { assertNotEquals } from "https://deno.land/std@0.223.0/assert/assert_not_equals.ts"; assertNotEquals(1, 2); // Doesn't throw assertNotEquals(1, 1); // Throws Type ParametersTParametersactual: Texpected: Toptionalmsg: string