MCPcopy Create free account
hub / github.com/nodejs/node / MaxLT

Function MaxLT

deps/v8/test/mjsunit/compiler/compare.js:28–31  ·  view source on GitHub ↗
(x, y)

Source from the content-addressed store, hash-verified

26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28function MaxLT(x, y) {
29 if (x < y) return y;
30 return x;
31}
32
33function MaxLE(x, y) {
34 if (x <= y) return y;

Callers 1

TestPrimitiveFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected