Counter.prototype.subtract = function ( other ) {

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

    } ;