Is there a method to gauge the duration taken by Angular to render a directive?
Alternatively, is there a way to determine the time it took Angular to recognize a change in a dataset and display the contents of the updated dataset?
As an illustration, consider the following scenario:
<div ng-repeat="item in items">
{{ item.text }}
</div>
How can I measure the time elapsed between each alteration in the items
dataset and the final DOM-related operation?