MCPcopy Index your code
hub / github.com/nodejs/node / assertLessThan

Function assertLessThan

test/fixtures/snapshot/typescript.js:2731–2735  ·  view source on GitHub ↗
(a, b, msg, stackCrawlMark)

Source from the content-addressed store, hash-verified

2729 }
2730 Debug.assertEqual = assertEqual;
2731 function assertLessThan(a, b, msg, stackCrawlMark) {
2732 if (a >= b) {
2733 fail("Expected ".concat(a, " < ").concat(b, ". ").concat(msg || ""), stackCrawlMark || assertLessThan);
2734 }
2735 }
2736 Debug.assertLessThan = assertLessThan;
2737 function assertLessThanOrEqual(a, b, stackCrawlMark) {
2738 if (a > b) {

Callers

nothing calls this directly

Calls 2

concatMethod · 0.80
failFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…