function readBooleanFromPointer()

in lib/h3core.js [414:417]


function readBooleanFromPointer(cAddress, offset = 0) {
    const val = C.getValue(cAddress + SZ_INT * offset, 'i32');
    return Boolean(val);
}