Counter.prototype.add = function ( other ) {

        for ( let [ key , count ] of other ) this.increment( key , count ) ;

    } ;