UNPKG

node-web-mvc

Version:
14 lines (13 loc) 323 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class MultiValueMap extends Map { containsKey(key) { return this.has(key); } addIfAbsent(key, value) { if (!this.containsKey(key)) { this.add(key, value); } } } exports.default = MultiValueMap;