comparing underscore.js 'isFunction' with 'typeof function' (v5)

Revision 5 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
underscore isFunction
var obj = function() {
    console.log("test")
    };
return typeof obj === 'function';
ready
typeof 'function'
var obj = function() {
    console.log("test")
    };
return 'function' === typeof obj;
ready

Revisions

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