Theozaurus
Theozaurus

Reputation: 963

Exporting profiling information from Chrome

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

Answers (1)

loislo
loislo

Reputation: 14129

console.profile('mytest') // do stuff console.profileEnd('mytest');

console.profiles[0] // obj representing the profiling data.

Upvotes: 1

Related Questions