ninjapenguin (owner)

Revisions

gist: 219582 Download_button fork
public
Description:
Firebug profile start from within code
Public Clone URL: git://gist.github.com/219582.git
Embed All Files: show embed
snippet.js #
1
2
3
4
5
6
7
8
9
10
// Start the profiler
console.profile([title])
 
function dummy(param)
{
// Some crazy function
}
 
// Stop the profiler
console.profileEnd()