Sheep.js:JavaScript性能基准测试
Sheep.js是用于在浏览器中运行性能测试的简单工具。
例子
测试一个简单的功能:
sheep . test ( {
name : "How fast is Math.random()?" ,
test : Math . random
} ) ;
用参数测试一个函数:
sheep . test ( {
name : "How fast is Math.round()?" ,
test : function ( ) {
Math . round ( 27.443 ) ;
}
} ) ;
测试对象上的方法:
sheep . test ( {
name : "How fast Array.length?" ,
// The setup function