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 171         1 22 22 62   22     1      
define(['./forOwn'], function (forOwn) {
 
    /**
     * Get object size
     */
    function size(obj) {
        var count = 0;
        forOwn(obj, function(){
            count++;
        });
        return count;
    }
 
    return size;
 
});