mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Reformat benchamrk function.
This commit is contained in:
parent
be2407e233
commit
5d2e0efd7c
@ -1 +1,9 @@
|
|||||||
// Runs a function many times without the function call overhead
function benchmark(fn, times){
fn = fn.toString()
var s = fn.indexOf('{')+1,
e = fn.lastIndexOf('}');
fn = fn.substring(s,e);
return new Function('i','var t=new Date;while(i--){'+fn+'};return new Date-t')(times);
}
|
// Runs a function many times without the function call overhead
|
||||||
|
function benchmark(fn, times){
|
||||||
|
fn = fn.toString();
|
||||||
|
var s = fn.indexOf('{')+1,
|
||||||
|
e = fn.lastIndexOf('}');
|
||||||
|
fn = fn.substring(s,e);
|
||||||
|
|
||||||
|
return new Function('i','var t=new Date;while(i--){'+fn+'};return new Date-t')(times);
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user