UNPKG

netlify-cli

Version:

Netlify command line tool

10 lines 238 B
export class MultiMap { map = new Map(); add(key, value) { this.map.set(key, [...(this.map.get(key) ?? []), value]); } get(key) { return this.map.get(key) ?? []; } } //# sourceMappingURL=multimap.js.map