Files
atom/index.html
Corey Johnson & Nathan Sobo 982d5a4426 Benchmarking reveals filtering out non-files takes forevs
toString everything        0.199
Filter out non-files       0.703
Everything                 0.961
2012-01-03 17:34:21 -08:00

27 lines
539 B
HTML

<html>
<head>
<script src='src/stdlib/require.js'></script>
<script>
window.measure = function(name) {
var start = new Date().getTime();
return {stop: function() {
var end = new Date().getTime();
var total = (end - start) / 1000;
while(name.length < 40) {
name = name + " "
}
console.log(name + (end - start) / 1000);
}}
}
window.onload = function() {
require($bootstrapScript);
}
</script>
</head>
<body>
</body>
</html>