doran/node_modules/kafkajs/src/constants.js
2026-03-28 13:04:10 +01:00

9 lines
175 B
JavaScript

const EARLIEST_OFFSET = -2
const LATEST_OFFSET = -1
const INT_32_MAX_VALUE = Math.pow(2, 31) - 1
module.exports = {
EARLIEST_OFFSET,
LATEST_OFFSET,
INT_32_MAX_VALUE,
}