function assertimport { assert } from "https://dotland.deno.dev/std@0.223.0/assert/assert.ts"; assert(expr: unknown, msg?): asserts exprMake an assertion, error will be thrown if expr does not have truthy value. ExamplesExample 1 import { assert } from "https://deno.land/std@0.223.0/assert/assert.ts"; assert("hello".includes("ello")); // Doesn't throw assert("hello".includes("world")); // Throws Parametersexpr: unknownoptionalmsg = [UNSUPPORTED]Returnsasserts expr