I am afraid there is no Angular service / function for what you are looking for. But you can implement something like the following to fulfill your requirement:
function Ctrl($scope,$parse){ var path = 'very.very.deep.property'; var partials = path.split('.'); var deepKey = partials.pop();
The violin is available here . Hope this comes in handy.
source share