Files
babel/test/bench.html
2012-09-24 11:42:01 +02:00

19 lines
457 B
HTML

<!doctype html>
<head>
<meta charset="utf-8">
<title>Acorn benchmark</title>
<script src="../acorn.js"></script>
<script src="jquery-string.js"></script>
</head>
<button onclick="test()">GO</button>
<script>
function test() {
for (var i =0, t0 = +new Date; i < 10; ++i) acorn.parse(jquery164);
var n = (+new Date - t0) + "ms";
console.log(n);
document.body.appendChild(document.createElement("pre")).innerHTML = n;
}
</script>