Code coverage report for collection/max.js

Statements: 100% (3 / 3)      Branches: 100% (0 / 0)      Functions: 100% (2 / 2)      Lines: 100% (2 / 2)     

All files » collection/ » max.js
1 2 3 4 5 6 7 8 91         1      
define(['./make_', '../array/max', '../object/max'], function (make, arrMax, objMax) {
 
    /**
     * Get maximum value inside collection
     */
    return make(arrMax, objMax);
 
});