UNPKG

@studyportals/sp-hs-misc

Version:

Miscellaneous code used in HouseStark's projects

10 lines 267 B
class Dictionary extends Map { obtain(key, createDefaultValueFn) { if (!this.has(key)) { this.set(key, createDefaultValueFn()); } return this.get(key); } } export { Dictionary }; //# sourceMappingURL=dictionary.class.js.map