Code coverage report for collection/find.js

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

All files » collection/ » find.js
1 2 3 4 5 6 7 8 91         1      
define(['./make_', '../array/find', '../object/find'], function(make, arrFind, objFind) {
 
    /**
     * Find value that returns true on iterator check.
     */
    return make(arrFind, objFind);
 
});