/** * Poll all items from the queue. */ export function unsafePollAll(queue: MutableQueue): Chunk { return queue.pollUpTo(Number.MAX_SAFE_INTEGER) }