function assertLessView codeassertLess<T>(actual: T,expected: T,msg?: string): voidMake an assertion that actual is less than expected. If not then throw. ExamplesExample 1 import { assertLess } from "@std/assert/assert_less"; assertLess(1, 2); // Doesn't throw assertLess(2, 1); // Throws Type ParametersTView codeParametersactual: TView codeexpected: TView codeoptionalmsg: stringView codeReturn TypevoidView code