* Stores a value in the current layer, preserving explicit `undefined` * values with an internal marker. * @param {K} item the key of the element to add * @param {V} value the value of the element to add * @returns {void}
(item, value)
| 66 | * @returns {void} |
| 67 | */ |
| 68 | set(item, value) { |
| 69 | this.map.set(item, value === undefined ? UNDEFINED_MARKER : value); |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | * Deletes a key from the current view, either by removing it outright in the |
no outgoing calls
no test coverage detected