We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Describe the bug
export function allP<T>(iterable: Iterable<T>): Promise<T[]>;
should most likely be:
export function allP<T>(iterable: Iterable<Promise<T>>): Promise<T[]>;