UNPKG

args-any

Version:

Utility lib for parsing command options

34 lines 746 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ReadonlyMap = void 0; class ReadonlyMap { constructor(map) { this.map = map; } get(key) { return this.map.get(key); } forEach(callbackfn, thisArg) { this.map.forEach(callbackfn, thisArg); } has(key) { return this.map.has(key); } get size() { return this.map.size; } [Symbol.iterator]() { return this.map[Symbol.iterator](); } entries() { return this.map.entries(); } keys() { return this.map.keys(); } values() { return this.map.values(); } } exports.ReadonlyMap = ReadonlyMap; //# sourceMappingURL=ReadonlyMap.js.map