Code coverage report for random/random.js

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

All files » random/ » random.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 191               1 4420       1   1      
define(function () {
 
    /**
     * Just a wrapper to Math.random. No methods inside mout/random should call
     * Math.random() directly so we can inject the pseudo-random number
     * generator if needed (ie. in case we need a seeded random or a better
     * algorithm than the native one)
     */
    function random(){
        return random.get();
    }
 
    // we expose the method so it can be swapped if needed
    random.get = Math.random;
 
    return random;
 
});