Make an assertion that actual is less than expected. If not then throw.
actual
expected
Optional
24.7.0
import { assertLess } from "assert";assertLess(1, 2); // Doesn't throwassertLess(2, 1); // Throws Copy
import { assertLess } from "assert";assertLess(1, 2); // Doesn't throwassertLess(2, 1); // Throws
Make an assertion that
actual
is less thanexpected
. If not then throw.