UNPKG

netlify-cli

Version:

Netlify command line tool

12 lines (11 loc) 237 B
export class MultiMap { constructor() { this.map = new Map(); } add(key, value) { this.map.set(key, [...(this.map.get(key) ?? []), value]); } get(key) { return this.map.get(key) ?? []; } }