/** * Poll `n` items from the queue. */ export function unsafePollN(queue: MutableQueue, max: number): Chunk { return queue.pollUpTo(max) }