EaselJS performance
JavaScript performance comparison
Preparation code
<script>
(function(window) {
//Closure
window.CUID = (function() {
var _nextID = 0;
return {
get: function() {
return _nextID++;
}
};
})();
//UID.js of EaselJS library
var UID = function() {
throw "UID cannot be instantiated";
}
UID._nextID = 0;
UID.get = function() {
return UID._nextID++;
}
window.UID = UID;
}(window));
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
Closure |
|
pending… |
EaselJS |
|
pending… |
You can edit these tests or add even more tests to this page by appending /edit to the URL.
0 comments