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

Function checkInt8

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

Source from the content-addressed store, hash-verified

248
249var checkInt1 = (value) => checkInt(value, 1, 1);
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);

Callers

nothing calls this directly

Calls 1

checkIntFunction · 0.85

Tested by

no test coverage detected