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

Function assertLessThanOrEqual

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

Source from the content-addressed store, hash-verified

2735 }
2736 Debug.assertLessThan = assertLessThan;
2737 function assertLessThanOrEqual(a, b, stackCrawlMark) {
2738 if (a > b) {
2739 fail("Expected ".concat(a, " <= ").concat(b), stackCrawlMark || assertLessThanOrEqual);
2740 }
2741 }
2742 Debug.assertLessThanOrEqual = assertLessThanOrEqual;
2743 function assertGreaterThanOrEqual(a, b, stackCrawlMark) {
2744 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…