(path)
| 106516 | return obj[field1]; |
| 106517 | }; |
| 106518 | const getN = (path)=>{ |
| 106519 | const len = path.length; |
| 106520 | return function(obj) { |
| 106521 | for(let i = 0; i < len; ++i)obj = obj[path[i]]; |
| 106522 | return obj; |
| 106523 | }; |
| 106524 | }; |
| 106525 | function error(message) { |
| 106526 | throw Error(message); |
| 106527 | } |