Reputation: 963
Is there a way of exporting the javascript profiling information from Chrome?
It would be brilliant if a perftools style report of the javascript code could be generated.
Upvotes: 0
Views: 297
Reputation: 14129
console.profile('mytest') // do stuff console.profileEnd('mytest');
console.profiles[0] // obj representing the profiling data.
Upvotes: 1