UNPKG

highest-averages

Version:

Zero-dependency and extensible set of highest averages methods for allocating seats in a parliament. ### Install ```shell npm i highest-averages ``` ### Pure Example - Define the candidates with their vote ```typescript const a = new Candidate('A', 200) c

6 lines (5 loc) 121 B
export declare class Pair<X, Y> { readonly first: X; readonly second: Y; constructor(first: X, second: Y); }