@graphql-tools/utils
Version:
Common package containing utils and types for GraphQL tools
18 lines (17 loc) • 384 B
JavaScript
/**
* ES6 Map with additional `add` method to accumulate items.
*/
export class AccumulatorMap extends Map {
get [Symbol.toStringTag]() {
return 'AccumulatorMap';
}
add(key, item) {
const group = this.get(key);
if (group === undefined) {
this.set(key, [item]);
}
else {
group.push(item);
}
}
}