Make an assertion that actual is less than or equal to expected. If not then throw.
actual
expected
Optional
24.7.0
import { assertLessOrEqual } from "assert";assertLessOrEqual(1, 2); // Doesn't throwassertLessOrEqual(1, 1); // Doesn't throwassertLessOrEqual(1, 0); // Throws Copy
import { assertLessOrEqual } from "assert";assertLessOrEqual(1, 2); // Doesn't throwassertLessOrEqual(1, 1); // Doesn't throwassertLessOrEqual(1, 0); // Throws
Make an assertion that
actual
is less than or equal toexpected
. If not then throw.