MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / checkInt32

Function checkInt32

src/runtime_debug.js:252–252  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

250var checkInt8 = (value) => checkInt(value, 8, MIN_INT8, MAX_UINT8);
251var checkInt16 = (value) => checkInt(value, 16, MIN_INT16, MAX_UINT16);
252var checkInt32 = (value) => checkInt(value, 32, MIN_INT32, MAX_UINT32);
253var checkInt53 = (value) => checkInt(value, 53, MIN_INT53, MAX_UINT53);
254var checkInt64 = (value) => checkInt(value, 64, MIN_INT64, MAX_UINT64);
255

Callers

nothing calls this directly

Calls 1

checkIntFunction · 0.85

Tested by

no test coverage detected