function assertFalseimport { assertFalse } from "https://dotland.deno.dev/std@0.223.0/assert/assert_false.ts"; assertFalse(expr: unknown, msg?): asserts expr is FalsyMake an assertion, error will be thrown if expr have truthy value. ExamplesExample 1 import { assertFalse } from "https://deno.land/std@0.223.0/assert/assert_false.ts"; assertFalse(false); // Doesn't throw assertFalse(true); // Throws Parametersexpr: unknownoptionalmsg = [UNSUPPORTED]Returnsasserts expr is Falsy