(mask, ordinal)
| 83 | * @returns {boolean} If the ordinal-th bit is set in the mask |
| 84 | */ |
| 85 | const isOrdinalSetInMask = (mask, ordinal) => |
| 86 | BigInt.asUintN(1, mask >> BigInt(ordinal)) !== ZERO_BIGINT; |
| 87 | |
| 88 | /** |
| 89 | * Gets active state of connections. |
no outgoing calls
no test coverage detected