* Returns value. * @param {K1} key1 first key * @param {K2} key2 second key * @returns {T | undefined} value
(key1, key2)
| 398 | * @returns {T | undefined} value |
| 399 | */ |
| 400 | get(key1, key2) { |
| 401 | const childMap = this._map.get(key1); |
| 402 | if (childMap === undefined) { |
| 403 | return; |
| 404 | } |
| 405 | return childMap.get(key2); |
| 406 | } |
| 407 | |
| 408 | /** |
| 409 | * Updates value using the provided key1. |
no outgoing calls
no test coverage detected