(json, key, idx, src)
| 660 | |
| 661 | // Used to get the deepest object from json using dot notation. |
| 662 | const getDeepestObjectFromKey = (json, key, idx, src) => { |
| 663 | if (key in json) { |
| 664 | return json[key]; |
| 665 | } |
| 666 | src.splice(1); // Exit Early |
| 667 | }; |
| 668 | |
| 669 | const transformSelect = (selectObject, key, objects) => { |
| 670 | var values = []; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…