(obj, key)
| 711 | } |
| 712 | const { hasOwn } = Object; |
| 713 | function get(obj, key) { |
| 714 | if (hasOwn(obj, key)) { |
| 715 | return obj[key]; |
| 716 | } |
| 717 | } |
| 718 | function getForce(obj, key) { |
| 719 | const v = get(obj, key); |
| 720 | assert(v != null); |
no outgoing calls
no test coverage detected