* Get from an object from a path string * * @param {Object} obj * @param {String} path
(obj, path)
| 2738 | */ |
| 2739 | |
| 2740 | function getPath(obj, path) { |
| 2741 | return parseExpression(path).get(obj); |
| 2742 | } |
| 2743 | |
| 2744 | /** |
| 2745 | * Warn against setting non-existent root path on a vm. |
no test coverage detected