minified vs. minified

Benchmark created by John-David Dalton on


Description

I noticed subtle changes in the way the file is minified could affect the performance of Safari.

In this case, the "slow" version has typeof checks done like:

"number" == typeof x

and the "fast" version has typeof checks done like:

typeof x == "number"

Preparation HTML

<script src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/1.0.0-rc.3/lodash.js"></script>
<script>
var dev = _.noConflict();
</script>
<script src="//dl.dropbox.com/u/513327/lodash.min.fast.js"></script>
<script>
var fast = _.noConflict();
</script>
<script src="//dl.dropbox.com/u/513327/lodash.min.slow.js"></script>
<script>
var slow = _.noConflict();
</script>

Setup

var dev  = window.dev;
    var fast = window.fast;
    var slow = window.slow;
    
    var numbers = Array(100);
    for (var index = 0; index < 100; index++) {
      numbers[index] = index;
    }

Test runner

Ready to run.

Testing in
TestOps/sec
dev
var result = dev.contains(numbers, 50);
ready
fast
var result = fast.contains(numbers, 50);
ready
slow
var result = slow.contains(numbers, 50);
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.

  • Revision 1: published by John-David Dalton on