Code coverage report for object/size.js

Statements: 100% (8 / 8)      Branches: 100% (0 / 0)      Functions: 100% (4 / 4)      Lines: 100% (7 / 7)     

All files » object/ » size.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 181           1 30 30 69   30     1      
define(['./forOwn'], function (forOwn) {
 
    /**
     * Get object size
     * @version 0.1.1 (2012/01/28)
     */
    function size(obj) {
        var count = 0;
        forOwn(obj, function(){
            count++;
        });
        return count;
    }
 
    return size;
 
});